storybook/docs/snippets/angular/badge-story.mdx.mdx
2021-08-09 19:19:01 +01:00

70 lines
1.2 KiB
Plaintext

```md
<!---Badge.stories.mdx --->
import { Meta, Story, Canvas } from '@storybook/addon-docs';
import Badge from './badge.component';
<Meta title="MDX/Badge" component={Badge} />
export const Template = (args) => ({ props: args });
# Badge
Let's define a story for our `Badge` component:
<Story
name="positive"
args={{
status: 'positive',
label: 'Positive',
}}>
{Template.bind({})}
</Story>
We can drop it in a `Canvas` to get a code snippet:
<Canvas>
<Story
name="negative"
args={{
status: 'negative',
label: 'Negative',
}}>
{Template.bind({})}
</Story>
</Canvas>
We can even preview multiple Stories in a block. This
gets rendered as a group but defines individual stories
with unique URLs, which is great for review and testing.
<Canvas>
<Story
name="warning"
args={{
status: 'warning',
label: 'Warning',
}}>
{Template.bind({})}
</Story>
<Story
name="neutral"
args={{
status: 'neutral',
label: 'Neutral',
}}>
{Template.bind({})}
</Story>
<Story
name="error"
args={{
status: 'error',
label: 'Error',
}}>
{Template.bind({})}
</Story>
</Canvas>
```