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

10 lines
179 B
TypeScript
Raw Normal View History

2024-03-20 17:51:21 +01:00
import { Home, LeafcutterWrapper } from "leafcutter-ui";
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
}