mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-21 05:14:45 +08:00
feat: set artifacts layout
This commit is contained in:
11
frontend/src/app/workspace/chats/[thread_id]/layout.tsx
Normal file
11
frontend/src/app/workspace/chats/[thread_id]/layout.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
"use client";
|
||||
|
||||
import { ArtifactsProvider } from "@/components/workspace/artifacts";
|
||||
|
||||
export default function ChatLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return <ArtifactsProvider>{children}</ArtifactsProvider>;
|
||||
}
|
||||
Reference in New Issue
Block a user