DEV Community

Discussion on: React Portals: Flexible Modal Implementation

Collapse
 
cathalmacdonnacha profile image
Cathal Mac Donnacha 🚀 • Edited

Nice article but there are 2 issues:

  • You need to export the Modal component:

export default function Modal

  • You reference the id modal-root

const modalRoot = document.getElementById("modal-root");

but it should be just modal as this is what you set earlier in index.html

const modalRoot = document.getElementById("modal");