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

11 lines
234 B
TypeScript
Raw Normal View History

2023-08-25 07:11:33 +00:00
import { Home } from "./_components/Home";
import { LeafcutterWrapper } from "./_components/LeafcutterWrapper";
2023-06-26 10:07:12 +00:00
2023-08-25 07:11:33 +00:00
export default async function Page() {
return (
<LeafcutterWrapper>
<Home />
</LeafcutterWrapper>
);
2023-06-26 10:07:12 +00:00
}