Skip to content

Instantly share code, notes, and snippets.

@oguzhanaslan
Created January 3, 2018 20:21
Show Gist options
  • Save oguzhanaslan/16545dd38be0c6021c9f815aaa138de2 to your computer and use it in GitHub Desktop.
Save oguzhanaslan/16545dd38be0c6021c9f815aaa138de2 to your computer and use it in GitHub Desktop.
basic-example
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