Skip to content

Instantly share code, notes, and snippets.

@hprobotic
Created November 27, 2016 15:09
Show Gist options
  • Save hprobotic/0fc6b76a53bc4c98c4d791e086282888 to your computer and use it in GitHub Desktop.
Save hprobotic/0fc6b76a53bc4c98c4d791e086282888 to your computer and use it in GitHub Desktop.
import React from 'react'
import './DashboardView.scss'
export const DashboardView = () => (
<div className="col-md-8 dashboard__main">
<div className="home__activity">
<div className="play-action">
<ul className="li">
<li>
<button className="btn btn-play btn-playnow">
Chơi ngay
</button>
</li>
<li>
<button className="btn btn-play btn-customgame">
Chơi với bạn
</button>
</li>
</ul>
</div>
</div>
</div>
)
export default DashboardView
@ngothanhtai
Copy link

ngothanhtai commented Nov 27, 2016

import React from 'react'
import './DashboardView.scss'

export const DashboardView = () => {
return (
      <div className="col-md-8 dashboard__main">
        <div className="home__activity">
          <div className="play-action">
            <ul className="li">
              <li>
                <button className="btn btn-play btn-playnow">
                  Chơi ngay
                </button>
              </li>
              <li>
                <button className="btn btn-play btn-customgame">
                  Chơi với bạn
                </button>
              </li>
            </ul>

          </div>
        </div>
      </div>
)
}
export default DashboardView

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment