mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 20:51:07 +08:00
49 lines
1.5 KiB
JavaScript
49 lines
1.5 KiB
JavaScript
import React from 'react';
|
|
import { storiesOf } from '@storybook/react';
|
|
|
|
// eslint-disable-next-line import/named
|
|
import { withNotes, WithNotes, withMarkdownNotes } from '@storybook/addon-notes';
|
|
import { action } from '@storybook/addon-actions';
|
|
import BaseButton from '../components/BaseButton';
|
|
import markdownNotes from './notes/notes.md';
|
|
|
|
storiesOf('Addons|Notes', module)
|
|
.add(
|
|
'withNotes',
|
|
withNotes(
|
|
'This is the notes for a button. This is helpful for adding details about a story in a separate panel.'
|
|
)(() => <BaseButton label="Button with notes - check the notes panel for details" />)
|
|
)
|
|
.add(
|
|
'withNotes rendering imported markdown',
|
|
withNotes(markdownNotes)(() => (
|
|
<BaseButton label="Button with notes - check the notes panel for details" />
|
|
))
|
|
)
|
|
.add(
|
|
'withNotes rendering inline, github-flavored markdown',
|
|
withMarkdownNotes(`
|
|
# Documentation
|
|
|
|
This is inline github-flavored markdown!
|
|
|
|
## Example Usage
|
|
~~~js
|
|
storiesOf('Addons|Notes', module)
|
|
.add(
|
|
'withNotes rendering imported markdown',
|
|
withNotes(markdownNotes)(() => (
|
|
<BaseButton label="Button with notes - check the notes panel for details" />
|
|
))
|
|
)
|
|
~~~
|
|
`)(() => (
|
|
<BaseButton label="Button with notes from inline github-flavored markdown - check the notes panel for details" />
|
|
))
|
|
)
|
|
.add('using deprecated API', () => (
|
|
<WithNotes notes="Hello">
|
|
<BaseButton onClick={action('clicked')} label="😀 😎 👍 💯" />
|
|
</WithNotes>
|
|
));
|