link-stack/apps/link/app/(main)/leafcutter/page.tsx
Darren Clarke c620e4bf25 Flatten
2023-08-25 07:11:33 +00:00

10 lines
234 B
TypeScript

import { Home } from "./_components/Home";
import { LeafcutterWrapper } from "./_components/LeafcutterWrapper";
export default async function Page() {
return (
<LeafcutterWrapper>
<Home />
</LeafcutterWrapper>
);
}