DEV Community

Discussion on: React Portals, And how to use them (Next js and CRA)

Collapse
 
dupflo profile image
Florian Dupuis

Hello ! Thanks for you share it helps me a lot. Just you made a little mistake that make your code not working for Nextjs.

3.Time to create our HOC
(HOC/Portal.js)

return mounted
? createPortal(children,
document.querySelector("#myportal"))
: null

Add the # to myportal ;)

Collapse
 
ataparvinghods profile image
Ata Parvin Ghods

Thank you so much Florian.
I edited that, much appreciated ❤