mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 14:11:26 +08:00
more clear examples
This commit is contained in:
parent
ebd12705fd
commit
efcc280a77
@ -4,7 +4,7 @@ import { storiesOf } from '@storybook/react';
|
||||
import { withNotes, WithNotes } from '@storybook/addon-notes';
|
||||
import { action } from '@storybook/addon-actions';
|
||||
import BaseButton from '../components/BaseButton';
|
||||
import notes from './notes/notes.md';
|
||||
import markdownNotes from './notes/notes.md';
|
||||
|
||||
storiesOf('Addon Notes', module)
|
||||
.add(
|
||||
@ -14,8 +14,8 @@ storiesOf('Addon Notes', module)
|
||||
)(() => <BaseButton label="Button with notes - check the notes panel for details" />)
|
||||
)
|
||||
.add(
|
||||
'withNotes (markdown)',
|
||||
withNotes(notes)(() => (
|
||||
'withNotes rendering imported markdown',
|
||||
withNotes(markdownNotes)(() => (
|
||||
<BaseButton label="Button with notes - check the notes panel for details" />
|
||||
))
|
||||
)
|
||||
|
@ -1,9 +1,10 @@
|
||||
# Hello
|
||||
# This is a Markdown File
|
||||
|
||||
## World
|
||||
#### It is imported and compiled using a webpack markdown loader
|
||||
|
||||
Supports code snippets too:
|
||||
```jsx
|
||||
<div>
|
||||
Foo
|
||||
</div>
|
||||
```
|
||||
```
|
||||
|
Loading…
x
Reference in New Issue
Block a user