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