mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:51:19 +08:00
22 lines
523 B
Plaintext
22 lines
523 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,
|
|
};
|
|
|
|
//👇 We create a “template” of how args map to rendering
|
|
const Template = (args) => <YourComponent {...args} />;
|
|
|
|
export const FirstStory = Template.bind({});
|
|
|
|
FirstStory.args = {
|
|
/*👇 The args you need here will depend on your component */
|
|
};
|
|
``` |