Last active
September 8, 2015 22:50
-
-
Save mikeyamadeo/a8ea26d4a0a91e3c0eaa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import style from './style' | |
| import React from 'react' | |
| const Btn = React.createClass({ | |
| render () { | |
| return ( | |
| <button className={style.Btn}> | |
| Submit | |
| <button> | |
| ) | |
| } | |
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .Btn { | |
| padding: .8em 1.5em; | |
| color: white; | |
| background-color: #EC87C0; | |
| border: none; | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment