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