Skip to content

Instantly share code, notes, and snippets.

@anthanh
Created April 21, 2020 22:52
Show Gist options
  • Save anthanh/b898d91848839208a29475d7b07349e9 to your computer and use it in GitHub Desktop.
Save anthanh/b898d91848839208a29475d7b07349e9 to your computer and use it in GitHub Desktop.
storiesOf('my-front/UI/Button', module)
.add('Button', () => <ButtonsSet />)
.add('Button Link', () => (
<>
<Button
variant="contained"
component="a"
href="https://google.es"
target="_blank"
onClick={action('clicked secondary')}
>
Click on me!
</Button>
<br />
<Button
component="a"
href="https://google.es"
target="_blank"
onClick={action('clicked secondary')}
>
Click on me!
</Button>
<br />
<Button
className="link underline"
component="a"
href="https://google.es"
target="_blank"
onClick={action('clicked secondary')}
>
Click on me!
</Button>
</>
))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment