```js // Button.stories.js import Button from './Button.vue'; export default { component: Button, title: 'Components/Button', }; //👇 We create a “template” of how args map to rendering const Template = (args, { argTypes }) => ({ components: { Button }, props: Object.keys(argTypes), // Storybook provides all the args in a $props variable. // Each arg is also available as their own name. template: '