mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
26 lines
461 B
Plaintext
26 lines
461 B
Plaintext
```ts
|
|
// MyComponent.stories.ts
|
|
|
|
import type { Meta, StoryObj } from '@storybook/web-components';
|
|
|
|
import { withDesign } from 'storybook-addon-designs';
|
|
|
|
const meta: Meta = {
|
|
title: 'FigmaExample',
|
|
component: 'my-component',
|
|
decorators: [withDesign],
|
|
};
|
|
|
|
export default meta;
|
|
type Story = StoryObj;
|
|
|
|
export const Example: Story = {
|
|
parameters: {
|
|
design: {
|
|
type: 'figma',
|
|
url: 'https://www.figma.com/file/Sample-File',
|
|
},
|
|
},
|
|
};
|
|
```
|