mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 09:01:07 +08:00
32 lines
662 B
Plaintext
32 lines
662 B
Plaintext
```js
|
|
// .storybook/preview.js
|
|
|
|
import { DocsContainer } from '@storybook/blocks';
|
|
|
|
const ExampleContainer = (props) => {
|
|
const { children } = props;
|
|
return (
|
|
<DocsContainer {...props}>
|
|
<div>
|
|
<h1>Starter documentation</h1>
|
|
<h2>Storybook's auto-generated documentation page uses this custom container.</h2>
|
|
<div>{children}</div>
|
|
</div>
|
|
</DocsContainer>
|
|
);
|
|
};
|
|
|
|
export const parameters = {
|
|
actions: { argTypesRegex: '^on[A-Z].*' },
|
|
controls: {
|
|
matchers: {
|
|
color: /(background|color)$/i,
|
|
date: /Date$/,
|
|
},
|
|
},
|
|
docs: {
|
|
container: (props) => <ExampleContainer {...props} />,
|
|
},
|
|
};
|
|
```
|