mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:11:29 +08:00
22 lines
475 B
Plaintext
22 lines
475 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/7.0/react/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'Path/To/MyComponent',
|
|
component: MyComponent,
|
|
};
|
|
|
|
export const Basic = {};
|
|
|
|
export const WithProp = {
|
|
render: () => <MyComponent prop="value" />,
|
|
};
|
|
``` |