Create test run editor
This commit is contained in:
9
frontend/app/projects/[projectId]/runs/[runId]/page.tsx
Normal file
9
frontend/app/projects/[projectId]/runs/[runId]/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import RunEditor from "./RunEditor";
|
||||
|
||||
export default function Page({
|
||||
params,
|
||||
}: {
|
||||
params: { projectId: string; runId: string };
|
||||
}) {
|
||||
return <RunEditor projectId={params.projectId} runId={params.runId} />;
|
||||
}
|
||||
Reference in New Issue
Block a user