mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:11:06 +08:00
13 lines
171 B
Plaintext
13 lines
171 B
Plaintext
```js
|
|
// .storybook/preview.js
|
|
|
|
import { CodeBlock } from './CodeBlock';
|
|
|
|
export const parameters = {
|
|
docs: {
|
|
components: {
|
|
code: CodeBlock,
|
|
},
|
|
},
|
|
};
|
|
``` |