mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
29 lines
551 B
Plaintext
29 lines
551 B
Plaintext
```js
|
|
// MyComponent.stories.js
|
|
|
|
import MyComponent from './MyComponent.svelte';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/7.0/svelte/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'Path/To/MyComponent',
|
|
component: MyComponent,
|
|
};
|
|
|
|
export const Basic = {
|
|
render: () => ({
|
|
Component: MyComponent,
|
|
}),
|
|
};
|
|
|
|
export const WithProp = {
|
|
render: () => ({
|
|
Component: MyComponent,
|
|
props: {
|
|
prop: 'value',
|
|
},
|
|
}),
|
|
};
|
|
``` |