import React from "react";
import type { Meta, StoryObj } from "@storybook/react";
import { Switch } from "../ui/switch";

const meta: Meta = {
  title: "Components/Switch",
  component: Switch,
};

export default meta;
type Story = StoryObj<typeof Switch>;

export const Default: Story = {
  render: () => <Switch></Switch>,
};
