- Create gateway store in @multica/store (WS connection independent of components) - Gateway auto-connects when hub is ready, messages handled internally - Move scroll-fade hook to @multica/ui/hooks - Move Chat component to @multica/ui/components - Add setConfig() call in web layout for URL injection - Delete all web-local hooks, components, and lib/config - Web app is now a pure shell: layout.tsx + page.tsx Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
5 lines
107 B
TypeScript
5 lines
107 B
TypeScript
import { Chat } from "@multica/ui/components/chat";
|
|
|
|
export default function Page() {
|
|
return <Chat />;
|
|
}
|