Files
cozsweet-frontend-nextjs/src/app/chat/page.tsx
T
admin 287affa34a refactor(app): move route screens out of components
Exclude test and spec files from generated barrels so page imports do not load test modules at runtime.
2026-06-17 14:13:42 +08:00

8 lines
133 B
TypeScript

"use client";
import { ChatScreen } from "@/app/chat/chat-screen";
export default function ChatPage() {
return <ChatScreen />;
}