Can anyone give me idea on implementing react-simple-jstree with nextjs?
When I try to implement the same with reactjs it returns an error saying
jQuery requires a window with a document
Can anyone give me idea on implementing react-simple-jstree with nextjs?
When I try to implement the same with reactjs it returns an error saying
jQuery requires a window with a document
NextJS is server-side rendering, window is only available only in browser, so u need to disable SSR to load react-simple-jstree
const ReactJson = dynamic(() => import('react-simple-jstree'), { ssr: false });