mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-19 20:34:45 +08:00
feat: integrated with artifacts
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import { FileIcon } from "lucide-react";
|
||||
|
||||
export function ArtifactFileDetail({ filepath }: { filepath: string }) {
|
||||
return (
|
||||
<div className="flex size-full items-center justify-center">
|
||||
<div className="flex items-center gap-2">
|
||||
<div>
|
||||
<FileIcon />
|
||||
</div>
|
||||
<div>{filepath}</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user