diff --git a/app/portal/laser-settings/Client.tsx b/app/portal/laser-settings/Client.tsx new file mode 100644 index 00000000..466588a0 --- /dev/null +++ b/app/portal/laser-settings/Client.tsx @@ -0,0 +1,58 @@ +"use client"; + +import dynamic from "next/dynamic"; +import { useSearchParams } from "next/navigation"; + +const SettingsSwitcher = dynamic( + () => import("@/components/portal/SettingsSwitcher"), + { ssr: false } +); + +function DetailsFrame({ src }: { src: string }) { + return ( +