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

10 lines
241 B
TypeScript

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>
);
};