storybook/docs/snippets/react/button-story.js.mdx
2021-06-18 17:34:13 +01:00

14 lines
249 B
Plaintext

```js
// Button.stories.js | Button.stories.jsx
import React from 'react';
import { Button } from './Button';
export default {
component: Button,
title: 'Components/Button',
}
export const Primary = () => <Button primary>Button</Button>;
```