Skip to content

Commit

Permalink
Add link to info markdown
Browse files Browse the repository at this point in the history
Per #1258
  • Loading branch information
shilman committed Jun 12, 2017
1 parent 0537e3c commit 8d039e2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions examples/cra-kitchen-sink/src/stories/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,10 @@ storiesOf('Button', module)

return <Button>{content}</Button>;
})
.addWithInfo('with some info', 'Use the info addon with its painful API.', () =>
<Button>click the "?" in top right for info</Button>
.addWithInfo(
'with some info',
'Use the [info addon](https://github.com/storybooks/storybook/tree/master/addons/info) with its painful API.',
() => <Button>click the "?" in top right for info</Button>
);

storiesOf('App', module).add('full app', () => <App />);
Expand Down

0 comments on commit 8d039e2

Please sign in to comment.