diff --git a/examples/cra-kitchen-sink/src/stories/addon-notes.stories.js b/examples/cra-kitchen-sink/src/stories/addon-notes.stories.js index 0a91714b179..f6c850dddfe 100644 --- a/examples/cra-kitchen-sink/src/stories/addon-notes.stories.js +++ b/examples/cra-kitchen-sink/src/stories/addon-notes.stories.js @@ -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) )(() => ) ) .add( - 'withNotes (markdown)', - withNotes(notes)(() => ( + 'withNotes rendering imported markdown', + withNotes(markdownNotes)(() => ( )) ) diff --git a/examples/cra-kitchen-sink/src/stories/notes/notes.md b/examples/cra-kitchen-sink/src/stories/notes/notes.md index ec6d05a5d76..47bae27134c 100644 --- a/examples/cra-kitchen-sink/src/stories/notes/notes.md +++ b/examples/cra-kitchen-sink/src/stories/notes/notes.md @@ -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
Foo
-``` \ No newline at end of file +```