storybook/docs/snippets/react/your-component.ts.mdx
2020-08-10 13:02:44 +08:00

21 lines
393 B
Plaintext

```ts
// YourComponent.stories.ts
import YourComponent from './your-component.component';
export default {
title: 'YourComponent',
component: YourComponent,
};
const Template = (args: YourComponent) => ({
component: YourComponent,
props: args,
});
export const FirstStory = Template.bind({});
FirstStory.args = {
/* the args you need here will depend on your component */
};
```