12 lines
359 B
TypeScript
12 lines
359 B
TypeScript
"use client";
|
|
import { RenderAppBreadcrumb } from "ikoncomponents";
|
|
|
|
|
|
export default function OfficeDetailsLayout({children,}: Readonly<{children: React.ReactNode;}>){
|
|
return (
|
|
<>
|
|
<RenderAppBreadcrumb breadcrumb={{ level: 2, title: "Working Days", href: "/configuration/office-details" }} />
|
|
{children}
|
|
</>
|
|
);
|
|
} |