storybook/docs/snippets/angular/your-component.ts.mdx
2021-03-09 15:26:53 +00:00

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 */
};
```