web-humas-fe/app/portal-ppid/satuan-kerja/[satker-name]/regulasi/page.tsx

16 lines
451 B
TypeScript
Raw Normal View History

2024-11-05 06:15:40 +00:00
import PPIDSidebar from "@/components/layout/portal-ppid/PPIDSidebar";
import RegulationTable from "@/components/table/tabel-regulasi";
2024-03-25 04:10:43 +00:00
export default function RegulasiPage() {
2024-11-05 06:15:40 +00:00
return (
<div className="md:flex">
<div className="w-auto bg-[#E2E2E2] md:w-2/3 lg:w-[75%] px-2 md:px-0 lg:px-5">
<RegulationTable />
</div>
<div className="w-auto md:w-1/3 lg:w-[25%]">
<PPIDSidebar />
</div>
</div>
);
2024-03-25 04:10:43 +00:00
}