20 lines
410 B
TypeScript
20 lines
410 B
TypeScript
'use client'
|
|
import { SatkerLayout } from '@/components/layout/SatKerLayout';
|
|
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>
|
|
)
|
|
}
|