```js // YourComponent.stories.js import YourComponent from './YourComponent.svelte'; //๐Ÿ‘‡This default export determines where your story goes in the story list export default { component: YourComponent, }; export const FirstStory = { args: { //๐Ÿ‘‡ The args you need here will depend on your component }, render: (args) => ({ Component: YourComponent, props: args, }), }; ```