I unable to import html-to-draftjs on my Nextjs Project. If I import it with:
import htmlToDraft from "html-to-draftjs"
The result will be:
I try to use dynamic import:
const htmlToDraft = dynamic(
() => {
return import("html-to-draftjs");
},
{ ssr: false }
);
Is there any other import method that I can try? or maybe is there any alternative htmltodraft module that i can use? Thank You!

