mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:41:07 +08:00
18 lines
328 B
Plaintext
18 lines
328 B
Plaintext
```js
|
|
// MyComponent.story.js | MyComponent.story.jsx | MyComponent.story.ts | MyComponent.story.tsx
|
|
|
|
import React from 'react';
|
|
|
|
import { MyComponent } from './MyComponent';
|
|
|
|
export default {
|
|
component: MyComponent,
|
|
};
|
|
|
|
export const Basic = {};
|
|
|
|
export const WithProp = {
|
|
render: () => <MyComponent prop="value" />,
|
|
};
|
|
```
|