first commit
This commit is contained in:
21
frontend/app/main/configuration/employee-data/layout.tsx
Normal file
21
frontend/app/main/configuration/employee-data/layout.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
"use client";
|
||||
import { RenderAppBreadcrumb } from "ikoncomponents";
|
||||
|
||||
export default function EmployeeDataLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
return (
|
||||
<>
|
||||
<RenderAppBreadcrumb
|
||||
breadcrumb={{
|
||||
level: 2,
|
||||
title: "Employee Data",
|
||||
href: "/configuration/employee-data",
|
||||
}}
|
||||
/>
|
||||
{children}
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user