-
Notifications
You must be signed in to change notification settings - Fork 2.8k
/
Copy pathpreview.js
37 lines (34 loc) · 1017 Bytes
/
preview.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import './docs-root.css';
import '../packages/react-components/react-storybook-addon-export-to-sandbox/src/styles.css';
import { withLinks } from '@storybook/addon-links';
/** @typedef {import('../packages/react-components/react-storybook-addon-export-to-sandbox/src/public-types').ParametersExtension & import('@storybook/react').Parameters} Parameters */
/** @type {import('@storybook/react').Decorator[]} */
export const decorators = [withLinks];
/** @type {Parameters} */
export const parameters = {
viewMode: 'docs',
controls: {
disable: true,
expanded: true,
},
docs: {
source: {
excludeDecorators: true,
type: 'code',
},
},
exportToSandbox: {
provider: 'stackblitz-cloud',
bundler: 'vite',
requiredDependencies: {
// for React
react: '^18',
'react-dom': '^18',
// necessary for FluentProvider:
'@fluentui/react-components': '^9.0.0',
},
optionalDependencies: {
'@fluentui/react-icons': 'latest',
},
},
};