Created
April 21, 2020 22:52
-
-
Save anthanh/b898d91848839208a29475d7b07349e9 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
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