storybook/docs/snippets/web-components/storybook-csf-3-auto-title-redundant.js.mdx
2023-03-08 14:27:28 +00:00

15 lines
233 B
Plaintext

```js
// components/MyComponent/MyComponent.stories.js
export default {
component: 'my-component',
title: 'components/MyComponent/MyComponent',
};
export const Default = {
args: {
something: 'Something else',
},
};
```