import type { Meta, StoryObj } from '@storybook/react'; import Switch from './Switch'; const meta: Meta = { component: Switch }; export default meta; type Story = StoryObj; export const notChecked: Story = { args: { checked: false } }; export const checked: Story = { args: { checked: true } };