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

11 lines
269 B
TypeScript
Raw Permalink Normal View History

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