Norbert de Langen 746b2a4f11
Merge branch 'next' into upgrades
# Conflicts:
#	addons/essentials/package.json
#	addons/notes/package.json
#	addons/storyshots/storyshots-core/package.json
#	app/angular/package.json
#	app/html/package.json
#	app/marko/package.json
#	app/preact/package.json
#	app/react/package.json
#	app/vue/package.json
#	app/web-components/package.json
#	examples/riot-kitchen-sink/package.json
#	examples/vue-kitchen-sink/package.json
#	lib/cli/package.json
#	lib/core/package.json
#	yarn.lock
2020-02-03 13:40:26 +01:00
..
2019-10-03 11:08:40 +02:00
2020-02-03 13:40:26 +01:00
2019-06-11 18:47:11 +02:00
2019-06-11 18:47:11 +02:00

storybook-addon-queryparams

This storybook addon can be helpful if your components need special query parameters to work the way you want them.

Getting started

First, install the addon.

$ yarn add @storybook/addon-queryparams --dev

import the withQuery decorator so the url will be changed before rendering stories.

import React from 'react';
import { storiesOf, addDecorator } from '@storybook/react';
import { withQuery } from '@storybook/addon-queryparams';

storiesOf('button', module)
  .addDecorator(withQuery)
  .addParameters({
    query: {
      mock: true,
    }
  })
  .add('Prints the document.search', () => (
    <div>
      This is the current document.search: {document.search}, it includes `mock`!
    </div>
  ));