mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:11:11 +08:00
36 lines
762 B
Plaintext
36 lines
762 B
Plaintext
```md
|
|
<!-- MyComponent.stories.mdx -->
|
|
|
|
import { Canvas, Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { withDesign } from 'storybook-addon-designs';
|
|
|
|
import MyComponent from './MyComponent.svelte';
|
|
|
|
<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/svelte/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={() => ({
|
|
Component: MyComponent,
|
|
props: {}
|
|
})} />
|
|
</Canvas>
|
|
``` |