add location provider around stories in official storybook, as that's required in react-router

This commit is contained in:
Norbert de Langen 2021-10-22 12:58:21 +02:00
parent 15c2925f49
commit 2adf602df8
No known key found for this signature in database
GPG Key ID: E49F18EF96C393F2
2 changed files with 7 additions and 0 deletions

View File

@ -35,6 +35,7 @@
"@storybook/jest": "0.0.0-alpha.5",
"@storybook/node-logger": "6.4.0-beta.19",
"@storybook/react": "6.4.0-beta.19",
"@storybook/router": "6.4.0-beta.19",
"@storybook/source-loader": "6.4.0-beta.19",
"@storybook/testing-library": "0.0.0-alpha.3",
"@storybook/theming": "6.4.0-beta.19",

View File

@ -11,6 +11,7 @@ import {
useTheme,
} from '@storybook/theming';
import { Symbols } from '@storybook/components';
import { LocationProvider } from '@storybook/router';
import addHeadWarning from './head-warning';
@ -87,6 +88,11 @@ const ThemedSetRoot = () => {
};
export const decorators = [
(StoryFn) => (
<LocationProvider>
<StoryFn />
</LocationProvider>
),
(StoryFn, { globals, parameters }) => {
const theme = globals.theme || parameters.theme || (isChromatic() ? 'stacked' : 'light');