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

16 lines
238 B
Plaintext

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