Create a Modal in React
Implement a Basic Modal
You can view the complete code here https://codesandbox.io/s/naughty-platform-ftyk3s
First, add a div to hold the modal in public/index.html
// public/index.html
<div id="root"></div>
<div id="modal-root"></div>
The modal wa...
cherylm.hashnode.dev3 min read