link-stack/apps/link/app/(main)/leafcutter/layout.tsx
2024-06-05 08:52:41 +02:00

10 lines
269 B
TypeScript

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