mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:11:29 +08:00
23 lines
487 B
Plaintext
23 lines
487 B
Plaintext
```ts
|
|
// YourComponent.stories.tsx
|
|
|
|
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) => ({
|
|
component: YourComponent,
|
|
props: args,
|
|
});
|
|
|
|
export const FirstStory = Template.bind({});
|
|
FirstStory.args = {
|
|
/* the args you need here will depend on your component */
|
|
};
|
|
```
|