mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:01:21 +08:00
20 lines
261 B
Plaintext
20 lines
261 B
Plaintext
```ts
|
|
// MyComponent.stories.ts
|
|
|
|
import { MyComponent } from './MyComponent.component';
|
|
|
|
export default {
|
|
component: MyComponent,
|
|
};
|
|
|
|
export const Basic = {};
|
|
|
|
export const WithProp = {
|
|
render: () => ({
|
|
props: {
|
|
prop: 'value',
|
|
},
|
|
}),
|
|
};
|
|
```
|