import { ViewDepartmentPage } from "@/modules/admin/departments/components/ViewDepartment";
import { use } from "react";

export default function Page({ params }: { params: Promise<{ id: string }> }) {
  const { id } = use(params);
  return <ViewDepartmentPage id={id} />;
}
