storybook/docs/snippets/angular/component-story-figma-integration.mdx.mdx
2022-04-27 04:34:58 +01:00

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>
```