storybook/docs/snippets/vue/component-story-figma-integration.mdx.mdx
2022-07-07 18:50:21 +01:00

32 lines
772 B
Plaintext

```md
<!-- MyComponent.stories.mdx -->
import { Canvas, Meta, Story } from '@storybook/addon-docs';
import { withDesign } from 'storybook-addon-designs';
import MyComponent from './MyComponent.vue';
<Meta title="FigmaExample" component={MyComponent} decorators={[withDesign]} />
<!--
👇 Render functions are a framework specific feature to allow you control on how the component renders.
See https://storybook.js.org/docs/7.0/vue/api/csf
to learn how to use render functions.
-->
<Canvas>
<Story
name="Example"
parameters={{
design: {
type: 'figma',
url: 'https://www.figma.com/file/Sample-File',
},
}}
render={() => ({
components: { MyComponent },
template: 'MyComponent />',
})} />
</Canvas>
```