16 lines
416 B
TypeScript
16 lines
416 B
TypeScript
"use client";
|
|
import { PPIDLayout } from "@/components/layout/ppid-layout";
|
|
import { SatkerLayout } from "@/components/layout/satker-layout";
|
|
import { usePathname } from "next/navigation";
|
|
import React, { Children } from "react";
|
|
|
|
export default function StandarLayananLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
const pathname = usePathname();
|
|
|
|
return <SatkerLayout>{children}</SatkerLayout>;
|
|
}
|