```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; const Template: Story = (args) => ({ component: YourComponent, props: args, }); export const YourStory = Template.bind({}); YourStory.args = { /* the args you need here will depend on your component */ }; ```