link-stack/apps/link/app/(main)/leafcutter/layout.tsx

11 lines
257 B
TypeScript
Raw Normal View History

2024-03-20 17:51:21 +01:00
import { ReactNode } from "react";
import { LeafcutterWrapper } from "leafcutter-ui";
type LayoutProps = {
children: ReactNode;
};
export default function Layout({ children }: LayoutProps) {
return <LeafcutterWrapper>{children}</LeafcutterWrapper>;
}