create runs list page

This commit is contained in:
Takeshi Kimata
2024-04-07 19:03:43 +09:00
parent e54af6fd2f
commit b0c2168463
6 changed files with 533 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
export default function Page() {
return <>This is Runs tab</>;
import RunsPage from "./RunsPage";
export default function Page({ params }: { params: { projectId: string } }) {
return (
<>
<RunsPage projectId={params.projectId} />
</>
);
}