mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 14:43:24 +00:00
9 lines
244 B
TypeScript
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 };
|