16 lines
354 B
TypeScript
16 lines
354 B
TypeScript
"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>
|
|
);
|
|
}
|