folders and cases

This commit is contained in:
Takeshi Kimata
2024-02-17 22:12:08 +09:00
parent 303d24409f
commit d752b4a3b0
8 changed files with 126 additions and 14 deletions

View File

@@ -0,0 +1,18 @@
"use client";
import { Button } from "@nextui-org/react";
import { useRouter } from "next/navigation";
export default function Page() {
const router = useRouter();
return (
<>
<Button
className="ms-5 mt-3"
onClick={() => router.push(`/projects/1/folders/1/cases/`)}
>
Back
</Button>
<div>This is each test case</div>
</>
);
}