mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 04:11:11 +08:00
16 lines
288 B
Plaintext
16 lines
288 B
Plaintext
```js
|
|
// components/MyComponent/MyComponent.stories.js|jsx|ts|tsx
|
|
|
|
import { MyComponent } from './MyComponent.js'
|
|
|
|
export default {
|
|
component: MyComponent,
|
|
title: 'components/MyComponent/MyComponent',
|
|
};
|
|
|
|
export const Default = {
|
|
args: {
|
|
something: 'Something else',
|
|
},
|
|
};
|
|
``` |