20 lines
560 B
TypeScript
20 lines
560 B
TypeScript
import type { Meta, StoryObj } from '@storybook/react';
|
|
import { ChatMessages } from './ChatMessages';
|
|
|
|
const meta = {
|
|
title: 'Components/Features/Chat/ChatMessages',
|
|
component: ChatMessages,
|
|
tags: ['autodocs'],
|
|
decorators: [
|
|
(Story) => (
|
|
<div className="h-[500px] border rounded-lg overflow-hidden flex flex-col bg-background">
|
|
<Story />
|
|
</div>
|
|
),
|
|
],
|
|
} satisfies Meta<typeof ChatMessages>;
|
|
|
|
export default meta;
|
|
type Story = StoryObj<typeof meta>;
|
|
|
|
export const Default: Story = {};
|