veza/apps/web/src/components/views/ChatView.tsx

11 lines
241 B
TypeScript
Raw Normal View History

2026-01-07 18:39:21 +00:00
import React from 'react';
import { ChatInterface } from '@/features/chat/components/ChatInterface';
export const ChatView: React.FC = () => {
return (
<div className="h-[calc(100vh-6rem)]">
<ChatInterface />
</div>
);
};