link-stack/apps/link/app/(main)/leafcutter/layout.tsx
Darren Clarke b09cc82544 WIP 5
2024-03-20 17:51:21 +01:00

10 lines
257 B
TypeScript

import { ReactNode } from "react";
import { LeafcutterWrapper } from "leafcutter-ui";
type LayoutProps = {
children: ReactNode;
};
export default function Layout({ children }: LayoutProps) {
return <LeafcutterWrapper>{children}</LeafcutterWrapper>;
}