```js // YourComponent.stories.js import React from 'react'; import { YourComponent } from './YourComponent'; //๐Ÿ‘‡ This default export determines where your story goes in the story list export default { title: 'YourComponent', component: YourComponent, }; //๐Ÿ‘‡ We create a โ€œtemplateโ€ of how args map to rendering const Template = (args) => ; export const FirstStory = Template.bind({}); FirstStory.args = { /*๐Ÿ‘‡ The args you need here will depend on your component */ }; ```