mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:41:07 +08:00
21 lines
322 B
Plaintext
21 lines
322 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',
|
|
},
|
|
});
|
|
``` |