13 lines
304 B
TypeScript
13 lines
304 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;
|
|
}) {
|
|
return <SatkerLayout>{children}</SatkerLayout>;
|
|
}
|