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