부서 read 기능 구현

This commit is contained in:
dohyeons
2025-11-03 16:31:03 +09:00
parent d7164531ef
commit 257912ea92
10 changed files with 1369 additions and 36 deletions

View File

@@ -0,0 +1,12 @@
"use client";
import { useParams } from "next/navigation";
import { DepartmentManagement } from "@/components/admin/department/DepartmentManagement";
export default function DepartmentManagementPage() {
const params = useParams();
const companyCode = params.companyCode as string;
return <DepartmentManagement companyCode={companyCode} />;
}