```md
import { Canvas, Meta, Story } from '@storybook/addon-docs';
import Badge from './Badge.vue';
# Badge
Let's define a story for our `Badge` component:
({
props: Object.keys(argTypes),
components: { Badge },
template: '',
})} />
We can drop it in a `Canvas` to get a code snippet:
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.
```