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