Skip to content

Commit

Permalink
Fix typo - Button should be button
Browse files Browse the repository at this point in the history
Users get an error when following the slow-start guide
storybookjs/storybook#422
  • Loading branch information
vyrwucc committed Feb 9, 2021
1 parent d7f4105 commit 29ab839
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/docs/basics/slow-start-guide.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ export default {
storiesOf('Button', module)
.add('with text', () => (
<Button onClick={action('clicked')}>Hello Button</Button>
<button onClick={action('clicked')}>Hello Button</button>
))
.add('with some emoji', () => (
<Button onClick={action('clicked')}>😀 😎 👍 💯</Button>
<button onClick={action('clicked')}>😀 😎 👍 💯</button>
));
~~~
Expand Down

0 comments on commit 29ab839

Please sign in to comment.