storybook/docs/snippets/common/your-component.ts.mdx
2020-08-06 19:03:05 +01:00

21 lines
395 B
Plaintext

```ts
// YourComponent.stories.ts
import YourComponent from './your-component.component';
export default {
component: YourComponent,
title: '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 */
};
```