storybook/docs/snippets/react/your-component.ts.mdx
2021-06-28 23:00:33 +01:00

23 lines
672 B
Plaintext

```ts
// YourComponent.stories.ts | YourComponent.stories.tsx
import React, { ComponentProps } from 'react';
import { Story, Meta } 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,
} as Meta;
//👇 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 */
};
```