mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:31:05 +08:00
23 lines
568 B
Plaintext
23 lines
568 B
Plaintext
```ts
|
|
// YourComponent.stories.ts
|
|
|
|
import { Meta, Story } from '@storybook/angular';
|
|
|
|
import { YourComponent } from './your.component';
|
|
|
|
//👇 This default export determines where your story goes in the story list
|
|
export default {
|
|
title: 'YourComponent',
|
|
component: YourComponent,
|
|
} as Meta;
|
|
|
|
//👇 We create a “template” of how args map to rendering
|
|
const Template: Story<YourComponent> = (args) => ({
|
|
props: args,
|
|
});
|
|
|
|
export const YourStory = Template.bind({});
|
|
YourStory.args = {
|
|
/* 👇 The args you need here will depend on your component */
|
|
};
|
|
``` |