storybook/docs/snippets/react/button-story-default-export-with-component.js.mdx
2021-08-28 01:52:57 +01:00

14 lines
294 B
Plaintext

```js
// Button.stories.js | Button.stories.jsx
import React from 'react';
import { Button } from './Button';
export default {
component: Button,
//👇 Title is optional, you can omit it and Storybook automatically generates the title for the story
title: 'Components/Button',
};
```