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
you need to add # before your root element id.
import React from 'react';
import Modal from 'react-modal';
Modal.setAppElement('#root');
const OptionModal = (props) => (
Selected Option
{props.selectedOption && {props.selectedOption}
}
);
export default OptionModal;
here is the reference: http://reactcommunity.org/react-modal/accessibility/