Files
my-links/inertia/layouts/dashboard_layout.tsx
Sonny 5c37fe9c31 refactor: remove all legacy files
+ comment/delete things that haven't yet migrated to mantine
2024-11-10 00:00:20 +01:00

9 lines
240 B
TypeScript

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