mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 11:11:53 +08:00
14 lines
199 B
Plaintext
14 lines
199 B
Plaintext
```jsx
|
|
// .storybook/preview.jsx
|
|
|
|
import DocumentationTemplate from './DocumentationTemplate.mdx';
|
|
|
|
export default {
|
|
parameters: {
|
|
docs: {
|
|
page: DocumentationTemplate,
|
|
},
|
|
},
|
|
};
|
|
```
|