storybook/docs/snippets/angular/button-story-default-export-with-component.ts.mdx
2021-09-03 23:31:04 +01:00

12 lines
255 B
Plaintext

```ts
// Button.stories.ts
import { Button } from './button.component';
export default {
component: Button,
//👇 Title is optional, you can omit it and Storybook automatically generates the title for the story
title: 'Components/Button',
};
```