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