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