import type { Meta, StoryObj } from "@storybook/react"; import { Switch } from "."; const meta: Meta = { title: "Example/Switch", component: Switch, }; type Story = StoryObj; export const Primary: Story = { render: () => (
console.log("change", v)} > This is a label
), }; export default meta;