mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 07:01:53 +08:00
17 lines
231 B
Plaintext
17 lines
231 B
Plaintext
```js
|
|
// MyComponent.stories.js
|
|
|
|
export default {
|
|
component: 'my-component',
|
|
};
|
|
|
|
export const Example = {
|
|
parameters: {
|
|
design: {
|
|
type: 'figma',
|
|
url: 'https://www.figma.com/file/Sample-File',
|
|
},
|
|
},
|
|
};
|
|
```
|