mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
15 lines
289 B
Plaintext
15 lines
289 B
Plaintext
```js
|
|
// MyComponent.stories.js
|
|
|
|
import React from 'react';
|
|
|
|
import MyComponent from './MyComponent';
|
|
|
|
export default {
|
|
title: 'Path/To/MyComponent',
|
|
component: MyComponent,
|
|
};
|
|
|
|
export const Basic = () => <MyComponent />;
|
|
export const WithProp = () => <MyComponent prop="value" />;
|
|
``` |