Skip to content
This repository has been archived by the owner on Nov 10, 2017. It is now read-only.

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
Muhammed Thanish committed Sep 4, 2016
1 parent ae87244 commit 271687d
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 271687d

Please sign in to comment.