mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:11:07 +08:00
27 lines
557 B
Plaintext
27 lines
557 B
Plaintext
```md
|
|
<!-- MyComponent.stories.mdx -->
|
|
|
|
import { Canvas, Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { withDesign } from 'storybook-addon-designs';
|
|
|
|
import { MyComponent } from './MyComponent.component';
|
|
|
|
<Meta title="FigmaExample" component={MyComponent} decorators={[withDesign]} />
|
|
|
|
export const Template = () => ({ props: {} });
|
|
|
|
<Canvas>
|
|
<Story
|
|
name="Example"
|
|
parameters={{
|
|
design: {
|
|
type: 'figma',
|
|
url: 'https://www.figma.com/file/Sample-File',
|
|
},
|
|
}}
|
|
>
|
|
{Template.bind({})}
|
|
</Story>
|
|
</Canvas>
|
|
``` |