Created
January 3, 2018 20:21
-
-
Save oguzhanaslan/16545dd38be0c6021c9f815aaa138de2 to your computer and use it in GitHub Desktop.
basic-example
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
const Button = (props) => ( | |
<button className={ 'large' in props && 'large' }> | |
{ props.children } | |
<style jsx>{` | |
button { | |
padding: 20px; | |
} | |
.large { | |
padding: 50px | |
} | |
`}</style> | |
</button> | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment