storybook/docs/snippets/react/your-component.ts.mdx
2021-02-23 00:26:03 +00:00

23 lines
631 B
Plaintext

```ts
// YourComponent.stories.tsx
import React, { ComponentProps } from 'react';
import { Story } from '@storybook/react';
import { YourComponent } from './YourComponent';
//👇 This default export determines where your story goes in the story list
export default {
title: 'YourComponent',
component: YourComponent,
};
//👇 We create a “template” of how args map to rendering
const Template: Story<ComponentProps<typeof YourComponent>> = (args) => <YourComponent {...args} />;
export const FirstStory = Template.bind({});
FirstStory.args = {
/*👇 The args you need here will depend on your component */
};
```