mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-06-26 21:39:43 +02:00
feat: add artifacts library page
This commit is contained in:
parent
19698bcc0b
commit
a5be3fbcf8
3 changed files with 149 additions and 0 deletions
|
|
@ -0,0 +1,11 @@
|
|||
"use client";
|
||||
|
||||
import { useParams } from "next/navigation";
|
||||
import { ArtifactsLibrary } from "@/features/artifacts-library";
|
||||
|
||||
export default function ArtifactsPage() {
|
||||
const params = useParams();
|
||||
const searchSpaceId = Number(params.search_space_id);
|
||||
|
||||
return <ArtifactsLibrary searchSpaceId={searchSpaceId} />;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue