link-stack/apps/leafcutter/app/(main)/about/page.tsx
2024-11-25 09:31:25 +01:00

10 lines
184 B
TypeScript

import { Suspense } from "react";
import { About } from "@link-stack/leafcutter-ui";
export default function Page() {
return (
<Suspense>
<About />
</Suspense>
);
}