287affa34a
Exclude test and spec files from generated barrels so page imports do not load test modules at runtime.
8 lines
133 B
TypeScript
8 lines
133 B
TypeScript
"use client";
|
|
|
|
import { ChatScreen } from "@/app/chat/chat-screen";
|
|
|
|
export default function ChatPage() {
|
|
return <ChatScreen />;
|
|
}
|