```ts // Button.stories.ts|tsx import type { Meta, StoryObj } from '@storybook/react'; import { Button } from './Button'; const meta: Meta = { component: Button, }; export default meta; type Story = StoryObj; export const Text: Story = { args: {}, }; ```