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