import dynamic from "next/dynamic"; const AllocationsClient = dynamic( () => import("~/components/allocations/AllocationsClient.js").then((m) => m.AllocationsClient), { loading: () => (
{[...Array(8)].map((_, i) => (
))}
), }, ); export default function AllocationsPage() { return ; }