7 lines
256 B
TypeScript
7 lines
256 B
TypeScript
![]() |
import DepartmentList from "@web/src/components/models/department/department-list";
|
||
|
|
||
|
export default function DepartmentAdminPage() {
|
||
|
return <div className=" flex-grow p-2 bg-white rounded-xl flex">
|
||
|
<DepartmentList></DepartmentList>
|
||
|
</div>
|
||
|
}
|