storybook/docs/snippets/react/your-component.js.mdx
2020-08-14 21:46:15 +01:00

21 lines
451 B
Plaintext

```js
// YourComponent.stories.js
import React from 'react';
import { YourComponent } from './YourComponent';
// This default export determines where you story goes in the story list
export default {
title: 'YourComponent',
component: YourComponent,
};
const Template = (args) => <YourComponent {...args} />;
export const FirstStory = Template.bind({});
FirstStory.args = {
/* the args you need here will depend on your component */
};
```