import React from "react"; import { Meta, StoryObj } from "@storybook/react-webpack5"; import { Switch } from "./Switch"; const meta: Meta = { component: Switch, title: "Primitives/Switch", argTypes: {}, }; export default meta; type Story = StoryObj; export const Variants: Story = { render: (args) => (
), args: {}, };