storybook/docs/snippets/react/button-story-with-sample.js.mdx
2023-05-25 21:44:48 +01:00

14 lines
190 B
Plaintext

```js
// Button.stories.js|jsx
import { Button } from './Button';
export default {
component: Button,
};
export const Sample = {
render: () => <Button label="hello button" />,
};
```