mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:01:06 +08:00
add location provider around stories in official storybook, as that's required in react-router
This commit is contained in:
parent
15c2925f49
commit
2adf602df8
@ -35,6 +35,7 @@
|
|||||||
"@storybook/jest": "0.0.0-alpha.5",
|
"@storybook/jest": "0.0.0-alpha.5",
|
||||||
"@storybook/node-logger": "6.4.0-beta.19",
|
"@storybook/node-logger": "6.4.0-beta.19",
|
||||||
"@storybook/react": "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/source-loader": "6.4.0-beta.19",
|
||||||
"@storybook/testing-library": "0.0.0-alpha.3",
|
"@storybook/testing-library": "0.0.0-alpha.3",
|
||||||
"@storybook/theming": "6.4.0-beta.19",
|
"@storybook/theming": "6.4.0-beta.19",
|
||||||
|
@ -11,6 +11,7 @@ import {
|
|||||||
useTheme,
|
useTheme,
|
||||||
} from '@storybook/theming';
|
} from '@storybook/theming';
|
||||||
import { Symbols } from '@storybook/components';
|
import { Symbols } from '@storybook/components';
|
||||||
|
import { LocationProvider } from '@storybook/router';
|
||||||
|
|
||||||
import addHeadWarning from './head-warning';
|
import addHeadWarning from './head-warning';
|
||||||
|
|
||||||
@ -87,6 +88,11 @@ const ThemedSetRoot = () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export const decorators = [
|
export const decorators = [
|
||||||
|
(StoryFn) => (
|
||||||
|
<LocationProvider>
|
||||||
|
<StoryFn />
|
||||||
|
</LocationProvider>
|
||||||
|
),
|
||||||
(StoryFn, { globals, parameters }) => {
|
(StoryFn, { globals, parameters }) => {
|
||||||
const theme = globals.theme || parameters.theme || (isChromatic() ? 'stacked' : 'light');
|
const theme = globals.theme || parameters.theme || (isChromatic() ? 'stacked' : 'light');
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user