mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-05-23 08:25:57 +00: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