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.
Original file line number Diff line number Diff line change
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

0 comments on commit 593ac5f

Please sign in to comment.