mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +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/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",
|
||||
|
@ -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');
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user