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