```ts // Button.stories.ts | Button.stories.tsx import React from 'react'; import { Story, Meta } from '@storybook/react'; import { Button } from './Button'; export default { component: Button, title: 'Components/Button', } as Meta; //👇 We create a “template” of how args map to rendering const Template: Story = (args) =>