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>;
|
|
|
|
|
}
|