Skip to content

Commit

Permalink
Fixed Angular button example story (#9540)
Browse files Browse the repository at this point in the history
Fixed Angular button example story
  • Loading branch information
ndelangen committed Jan 20, 2020
2 parents 3026db9 + 9e7e2c7 commit 593ac5f
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -11,14 +11,14 @@ export default {
export const Text = () => ({
component: Button,
props: {
Text: 'Hello Button',
text: 'Hello Button',
},
});

export const Emoji = () => ({
component: Button,
props: {
Text: '😀 😎 👍 💯',
text: '😀 😎 👍 💯',
},
});

Expand All @@ -29,7 +29,7 @@ Emoji.story = {
export const WithSomeEmojiAndAction = () => ({
component: Button,
props: {
Text: '😀 😎 👍 💯',
text: '😀 😎 👍 💯',
onClick: action('This was clicked OMG'),
},
});
Expand All @@ -42,7 +42,7 @@ WithSomeEmojiAndAction.story = {
export const ButtonWithLinkToAnotherStory = () => ({
component: Button,
props: {
Text: 'Go to Welcome Story',
text: 'Go to Welcome Story',
onClick: linkTo('Welcome'),
},
});
Expand Down

1 comment on commit 593ac5f

@vercel
Copy link

@vercel vercel bot commented on 593ac5f Jan 20, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.