storybook/docs/snippets/angular/your-component.mdx.mdx
2022-07-07 19:05:48 +01:00

20 lines
445 B
Plaintext

```md
<!-- YourComponent.stories.mdx -->
import { Meta, Story } from '@storybook/addon-docs';
import { YourComponent } from './your.component';
<!--👇 The title prop determines where your story goes in the story list -->
<Meta title="YourComponent" component={YourComponent} />
+
<!-- 👇 The args you need here will depend on your component -->
<Story
name="FirstStory"
args={{}}
render={(args) => ({
props: args,
})} />
```