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