Skip to content

Instantly share code, notes, and snippets.

@mikeyamadeo
Last active September 8, 2015 22:50
Show Gist options
  • Select an option

  • Save mikeyamadeo/a8ea26d4a0a91e3c0eaa to your computer and use it in GitHub Desktop.

Select an option

Save mikeyamadeo/a8ea26d4a0a91e3c0eaa to your computer and use it in GitHub Desktop.
import style from './style'
import React from 'react'
const Btn = React.createClass({
render () {
return (
<button className={style.Btn}>
Submit
<button>
)
}
})
.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