mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:51:06 +08:00
29 lines
822 B
Plaintext
29 lines
822 B
Plaintext
```ts
|
|
// MyComponent.stories.ts|tsx
|
|
|
|
import React from 'react';
|
|
|
|
import { ComponentStory, ComponentMeta } from '@storybook/react';
|
|
|
|
import { withDesign } from 'storybook-addon-designs';
|
|
|
|
import { MyComponent } from './MyComponent';
|
|
|
|
// More on default export: https://storybook.js.org/docs/react/writing-stories/introduction#default-export
|
|
export default {
|
|
title: 'FigmaExample',
|
|
component: MyComponent,
|
|
decorators: [withDesign],
|
|
} as ComponentMeta<typeof YourComponent>;
|
|
|
|
// More on component templates: https://storybook.js.org/docs/react/writing-stories/introduction#using-args
|
|
const Template: ComponentStory<typeof MyComponent> = () => <MyComponent />;
|
|
|
|
export const Example = Template.bind({});
|
|
Example.parameters = {
|
|
design: {
|
|
type: 'figma',
|
|
url: 'https://www.figma.com/file/Sample-File',
|
|
},
|
|
};
|
|
``` |