From 09bb5dfe7064954c61f01093f89b6852c86b929b Mon Sep 17 00:00:00 2001 From: Michael Shilman Date: Mon, 22 Oct 2018 22:19:21 +0800 Subject: [PATCH] Fix typo in story params docs --- MIGRATION.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/MIGRATION.md b/MIGRATION.md index fc2dc53933f..117c3a8a2bd 100644 --- a/MIGRATION.md +++ b/MIGRATION.md @@ -195,15 +195,17 @@ storiesOf('My component', module) Becomes: ```js +// config.js addDecorator(withNotes); -// applies notesto all stories, you can also add it only to specific stories by: -// storiesOf(...).addDecorator(withNotes) +// Component.stories.js storiesOf('My component', module) .add('story1', () => , { notes: 'some notes' }) .add('story2', () => , { notes: 'other notes' }); ``` +This example applies notes globally to all stories. You can apply it locally with `storiesOf(...).addDecorator(withNotes)`. + The story parameters correspond directly to the old withX arguments, so it's easy to migrate your code. See the parameters documentation for the packages that have been upgraded: - [Notes](https://github.com/storybooks/storybook/blob/master/addons/notes/README.md)