storybook/docs/snippets/web-components/button-story-rename-story.js.mdx
2023-05-25 21:04:33 +01:00

12 lines
137 B
Plaintext

```js
// Button.stories.js
export default {
component: 'demo-button',
};
export const Primary = {
name: 'I am the primary',
};
```