import dynamic from "next/dynamic"; import Script from "next/script"; import "../common.scss"; // Since client components get prerenderd on server as well hence importing the excalidraw stuff dynamically // with ssr false const ExcalidrawWithClientOnly = dynamic( async () => (await import("../excalidrawWrapper")).default, { ssr: false, }, ); export default function Page() { return ( <> Switch to Pages router