web-humas-fe/app/portal-ppid/satuan-kerja/[satker-name]/layanan-informasi/layout.tsx

16 lines
367 B
TypeScript

"use client";
import { SatkerLayout } from "@/components/layout/satker-layout";
import { usePathname } from "next/navigation";
import React from "react";
export default function LayananInformasiLayout({
children,
}: {
children: React.ReactNode;
}) {
const pathname = usePathname();
console.log(pathname);
return <SatkerLayout>{children}</SatkerLayout>;
}