You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.tsx 240B

1234567891011
  1. // import Editor from "components/editor"
  2. import dynamic from "next/dynamic"
  3. const Editor = dynamic(() => import("components/editor"), { ssr: false })
  4. export default function Home() {
  5. return (
  6. <div>
  7. <Editor />
  8. </div>
  9. )
  10. }