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