Skip to content

Commit

Permalink
Merge pull request #1508 from storybooks/fix-hmr-issue-in-cra-kitchen…
Browse files Browse the repository at this point in the history
…-sink

Fix a 'funny' hmr issue in cra-kitchen-sink
  • Loading branch information
ndelangen authored Jul 22, 2017
2 parents 958e5d8 + 52adbc3 commit 5b30336
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions examples/cra-kitchen-sink/src/stories/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ storiesOf('Addon Knobs', module).add(
})
);

storiesOf('component.base.Link')
storiesOf('component.base.Link', module)
.addDecorator(withKnobs)
.add('first', () =>
<a>
Expand All @@ -265,15 +265,15 @@ storiesOf('component.base.Link')
</a>
);

storiesOf('component.base.Span')
storiesOf('component.base.Span', module)
.add('first', () => <span>first span</span>)
.add('second', () => <span>second span</span>);

storiesOf('component.common.Div')
storiesOf('component.common.Div', module)
.add('first', () => <div>first div</div>)
.add('second', () => <div>second div</div>);

storiesOf('component.common.Table')
storiesOf('component.common.Table', module)
.add('first', () =>
<table>
<tr>
Expand All @@ -289,7 +289,7 @@ storiesOf('component.common.Table')
</table>
);

storiesOf('component.Button')
storiesOf('component.Button', module)
.add('first', () => <button>first button</button>)
.add('second', () => <button>first second</button>);

Expand Down

0 comments on commit 5b30336

Please sign in to comment.