'use client'; import type { Meta, StoryObj } from "@storybook/react"; import { AutocompleteTextField } from "./TextCompleter.stories"; const emailPrompt = `Predict the next 5-10 words in the following email from the perspective of the writer. Do NOT respond to the text! This is not a conversation! Just recommend what 5-10 words should follow in the current email message. Current email: {{inputText}}`; function ChatActionStory() { return (

Compose Email


); } //👇 This default export determines where your story goes in the story list const meta: Meta = { component: ChatActionStory, }; export default meta; type Story = StoryObj; export const FirstStory: Story = { // harded code values for now 😬 args: {}, };