import type { Meta, StoryObj } from '@storybook/react-vite' import { ChatUserMessage } from './ChatUserMessage' const meta = { title: 'Components/Chat/ChatUserMessage', component: ChatUserMessage, tags: ['autodocs'], parameters: { layout: 'padded' }, } satisfies Meta export default meta type Story = StoryObj export const Default: Story = { args: { message: 'Can you summarize the latest quarterly report?', }, } export const ShortMessage: Story = { args: { message: 'Hello!', }, } export const LongMessage: Story = { args: { message: 'I need help reviewing the contract terms for the new vendor agreement. Specifically, I want to understand the liability clauses and whether the indemnification language is standard for our industry. Can you walk me through the key sections?', }, } export const MultipleMessages: Story = { args: { message: '' }, render: () => (
), }