10 lines
227 B
React
10 lines
227 B
React
|
|
import DashboardLayout from "@/components/layout/DashboardLayout";
|
||
|
|
|
||
|
|
export default function Department() {
|
||
|
|
return (
|
||
|
|
<DashboardLayout>
|
||
|
|
<h1 className="text-xl font-semibold mb-4">Departments</h1>
|
||
|
|
</DashboardLayout>
|
||
|
|
);
|
||
|
|
}
|