mirror of
https://github.com/YuuKi-OS/Yuuki-chat.git
synced 2026-02-18 22:01:09 +00:00
Remove auth logic and switch to open API endpoint. Co-authored-by: awa <212803252+aguitauwu@users.noreply.github.com>
8 lines
131 B
TypeScript
8 lines
131 B
TypeScript
"use client";
|
|
|
|
import { ChatWindow } from "@/components/chat-window";
|
|
|
|
export default function Home() {
|
|
return <ChatWindow />;
|
|
}
|