How to fix this warning in console of a React app using the react-modal package:
Warning: react-modal: App element is not defined. Please use Moda
Moda
The shortest solution is to add appElement={document.getElementById("hereIsYourRootElementId")} It lets react-modal know where is your root element. It is not required, but recommended.
appElement={document.getElementById("hereIsYourRootElementId")}