mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:41:07 +08:00
20 lines
472 B
Plaintext
20 lines
472 B
Plaintext
```js
|
|
// MyComponent.story.js|jsx
|
|
|
|
import React from 'react';
|
|
|
|
import { MyComponent } from './MyComponent';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/react/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'Path/To/MyComponent',
|
|
component: MyComponent,
|
|
};
|
|
|
|
export const Basic = () => <MyComponent />;
|
|
|
|
export const WithProp = () => <MyComponent prop="value" />;
|
|
``` |