```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) => ({ components: { Button }, setup() { //๐Ÿ‘‡ The args will now be passed down to the template return { args }; }, template: '