veza/apps/web/src/features/chat/components/ChatSidebar.stories.tsx

21 lines
554 B
TypeScript
Raw Normal View History

import type { Meta, StoryObj } from '@storybook/react';
import { ChatSidebar } from './ChatSidebar';
const meta = {
title: 'Components/Features/Chat/ChatSidebar',
component: ChatSidebar,
tags: ['autodocs'],
decorators: [
(Story) => (
<div className="w-[300px] h-[600px] border rounded-lg overflow-hidden bg-kodo-graphite">
<Story />
</div>
),
],
} satisfies Meta<typeof ChatSidebar>;
export default meta;
type Story = StoryObj<typeof meta>;
export const Default: Story = {};