Created
January 21, 2019 11:52
-
-
Save gisderdube/27176eec5000bcd6968e03a4032aa47d 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 React from 'react' | |
import Button from './Button.jsx' | |
const Application = () => { | |
return ( | |
<div> | |
<Button>Click me</Button> | |
<Button secondary>Click me</Button> | |
<Button inverse big> | |
Click me | |
</Button> | |
</div> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment