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

13 lines
227 B
TypeScript
Raw Normal View History

2024-11-25 09:31:25 +01:00
import { Suspense } from "react";
2024-06-05 08:52:41 +02:00
import { FAQ } from "@link-stack/leafcutter-ui";
2023-02-13 13:46:56 +00:00
2024-11-25 09:31:25 +01:00
export const dynamic = "force-dynamic";
export default async function Page() {
return (
<Suspense>
<FAQ />
</Suspense>
);
2023-06-28 09:09:45 +00:00
}