mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-01 05:56:16 +00:00
11 lines
361 B
TypeScript
11 lines
361 B
TypeScript
import AppLayoutTemplate from '@/layouts/app/app-header-layout';
|
|
import { type BreadcrumbItem } from '@/types';
|
|
import { type ReactNode } from 'react';
|
|
|
|
interface AppLayoutProps {
|
|
children: ReactNode;
|
|
breadcrumbs?: BreadcrumbItem[];
|
|
}
|
|
|
|
export default ({ children, ...props }: AppLayoutProps) => <AppLayoutTemplate {...props}>{children}</AppLayoutTemplate>;
|