Answers for "Document object not defined Next js"

0

Document object not defined Next js

// You might want to initialize this to a placeholder like
// let Picker = <div />
let Picker;

if (process.browser) {
    console.log('We can access the window object');
    // Now let's do the dynamic import of that component we want to use
    Picker = dynamic(() => import("emoji-picker-react"))
}
Posted by: Guest on April-30-2021

Code answers related to "Document object not defined Next js"

Browse Popular Code Answers by Language