Merge pull request #28 from storybooks/25-auto-deploy

Test the auto-deploy by fixing a typo
This commit is contained in:
Michael Shilman 2017-05-14 10:20:31 +10:00 committed by GitHub
commit 63a8f927f9
2 changed files with 3 additions and 3 deletions

View File

@ -39,7 +39,7 @@ import { WithNotes } from '@kadira/storybook-addon-notes';
storiesOf('Button', module)
.add('with some emoji', () => (
<WithNotes notes={'Here we use some emoji as the Button text. Isn&apos;t it look nice?'}>
<WithNotes notes={'Here we use some emoji as the Button text. Doesn&apos;t it look nice?'}>
<Button onClick={action('clicked')}>😀 😎 👍 💯</Button>
</WithNotes>
));

View File

@ -53,7 +53,7 @@ storiesOf('Button', module)
</WithNotes>
))
.add('with some emoji', () => (
<WithNotes notes={'Here we use some emoji as the Button text. Isn&apos;t it look nice?'}>
<WithNotes notes={'Here we use some emoji as the Button text. Doesn&apos;t it look nice?'}>
<Button onClick={action('clicked')}>😀 😎 👍 💯</Button>
</WithNotes>
));
@ -143,7 +143,7 @@ storiesOf('Button', module)
</WithNotes>
))
.add('with some emojies', () => (
<WithNotes notes={'Here we use emojies as the Button text. Isn&apos;t it look nice?'}>
<WithNotes notes={'Here we use emojies as the Button text. Doesn&apos;t it look nice?'}>
<Button onClick={action('clicked')}>😀 😎 👍 💯</Button>
</WithNotes>
));