"use client"; import dynamic from "next/dynamic"; const Editor = dynamic(() => import("./editor").then((mod) => mod.default), { ssr: false, }); export default async function NewBlog() { return ( <> ); }