makearmy-app/app/portal/buying-guide/page.tsx

17 lines
354 B
TypeScript
Raw Normal View History

"use client";
import dynamic from "next/dynamic";
const BuyingGuideSwitcher = dynamic(
() => import("@/components/portal/BuyingGuideSwitcher"),
{ ssr: false }
);
export default function PortalBuyingGuidePage() {
return (
<div className="p-6">
<BuyingGuideSwitcher />
</div>
);
}