mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
21 lines
469 B
Plaintext
21 lines
469 B
Plaintext
```js
|
|
// .storybook/preview.js
|
|
|
|
import React from 'react';
|
|
|
|
import { normal as NavigationNormal } from '../components/Navigation.stories';
|
|
|
|
import GlobalContainerContext from '../components/lib/GlobalContainerContext';
|
|
|
|
const context = {
|
|
NavigationContainer: NavigationNormal,
|
|
};
|
|
|
|
const AppDecorator = (storyFn) => {
|
|
return (
|
|
<GlobalContainerContext.Provider value={context}>{storyFn()}</GlobalContainerContext.Provider>
|
|
);
|
|
};
|
|
|
|
addDecorator(AppDecorator);
|
|
``` |