mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-07-08 22:22:17 +02:00
feat(chats): implement ChatsPage component and update layout for all chats functionality
This commit is contained in:
parent
248e3aae57
commit
420ce3e153
7 changed files with 57 additions and 119 deletions
11
surfsense_web/app/dashboard/[workspace_id]/chats/page.tsx
Normal file
11
surfsense_web/app/dashboard/[workspace_id]/chats/page.tsx
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import { AllChatsWorkspaceContent } from "@/components/layout/ui/sidebar";
|
||||
|
||||
export default async function ChatsPage({ params }: { params: Promise<{ workspace_id: string }> }) {
|
||||
const { workspace_id } = await params;
|
||||
|
||||
return (
|
||||
<div className="w-full select-none">
|
||||
<AllChatsWorkspaceContent searchSpaceId={workspace_id} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue