mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
27 lines
680 B
Plaintext
27 lines
680 B
Plaintext
```js
|
|
// MyComponent.stories.js|jsx
|
|
|
|
import React from '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],
|
|
};
|
|
|
|
// More on component templates: https://storybook.js.org/docs/react/writing-stories/introduction#using-args
|
|
const Template = () => <MyComponent />;
|
|
|
|
export const Example = Template.bind({});
|
|
Example.parameters = {
|
|
design: {
|
|
type: 'figma',
|
|
url: 'https://www.figma.com/file/Sample-File',
|
|
},
|
|
};
|
|
``` |