storybook/docs/snippets/svelte/your-component.js.mdx
2021-05-06 17:36:21 +01:00

22 lines
424 B
Plaintext

```js
// YourComponent.stories.js
import YourComponent from './YourComponent.svelte';
//👇This default export determines where your story goes in the story list
export default {
title: 'YourComponent',
component: YourComponent,
};
const Template = (args) => ({
props: args,
});
export const FirstStory = Template.bind({});
FirstStory.args = {
/* The args you need here will depend on your component */
};
```