storybook/docs/snippets/react/button-story-rename-story.js.mdx
2021-09-06 22:03:15 +01:00

17 lines
266 B
Plaintext

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