mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:41:07 +08:00
22 lines
320 B
Plaintext
22 lines
320 B
Plaintext
```js
|
|
// MyComponent.stories.js
|
|
|
|
import MyComponent from './MyComponent.svelte';
|
|
|
|
export default {
|
|
title: 'Path/To/MyComponent',
|
|
component: MyComponent,
|
|
};
|
|
|
|
export const Basic = () => ({
|
|
Component:MyComponent,
|
|
});
|
|
|
|
export const WithProp = () => ({
|
|
Component:MyComponent,
|
|
props:{
|
|
prop:'value',
|
|
},
|
|
});
|
|
```
|