mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:11:06 +08:00
Fixing "where your story goes in the story list" instead of "where you story goes in the story list" Your is sometimes used to indicate that something belongs to or relates to people in general, hence your story.
21 lines
452 B
Plaintext
21 lines
452 B
Plaintext
```js
|
|
// YourComponent.stories.js
|
|
|
|
import React from 'react';
|
|
import { YourComponent } from './YourComponent';
|
|
|
|
// This default export determines where your story goes in the story list
|
|
export default {
|
|
title: 'YourComponent',
|
|
component: YourComponent,
|
|
};
|
|
|
|
const Template = (args) => <YourComponent {...args} />;
|
|
|
|
export const FirstStory = Template.bind({});
|
|
|
|
FirstStory.args = {
|
|
/* the args you need here will depend on your component */
|
|
};
|
|
```
|