Files
my-links/inertia/layouts/dashboard_layout.tsx
2025-08-06 19:50:53 +02:00

9 lines
244 B
TypeScript

import { PropsWithChildren } from 'react';
import { BaseLayout } from '~/layouts/_base_layout';
const LayoutWrapper = ({ children }: PropsWithChildren) => (
<BaseLayout>{children}</BaseLayout>
);
export { LayoutWrapper as DashboardLayout };