feat(app): implement library feature
This commit is contained in:
parent
61044715e9
commit
c51ec8ff0f
8 changed files with 234 additions and 21 deletions
7
ui/app/c/[chatId]/page.tsx
Normal file
7
ui/app/c/[chatId]/page.tsx
Normal file
|
@ -0,0 +1,7 @@
|
|||
import ChatWindow from '@/components/ChatWindow';
|
||||
|
||||
const Page = ({ params }: { params: { chatId: string } }) => {
|
||||
return <ChatWindow id={params.chatId} />;
|
||||
};
|
||||
|
||||
export default Page;
|
Loading…
Add table
Add a link
Reference in a new issue