mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
26 lines
577 B
Plaintext
26 lines
577 B
Plaintext
```ts
|
|
// MyComponent.stories.ts
|
|
|
|
import type { Story, Meta } from '@storybook/angular/';
|
|
|
|
import { withDesign } from 'storybook-addon-designs';
|
|
|
|
import { MyComponent } from './MyComponent.component';
|
|
|
|
// More on default export: https://storybook.js.org/docs/7.0/angular/writing-stories/introduction#default-export
|
|
export default {
|
|
title: 'FigmaExample',
|
|
component: MyComponent,
|
|
decorators: [withDesign],
|
|
} as Meta;
|
|
|
|
export const Example: Story = {
|
|
parameters: {
|
|
design: {
|
|
type: 'figma',
|
|
url: 'https://www.figma.com/file/Sample-File',
|
|
},
|
|
},
|
|
};
|
|
```
|