import React, {PropTypes} from 'react'; import styles from './Drawer.css'; import onClickOutside from 'react-onclickoutside'; const Drawer = ({children, handleClickOutside}) => { return (
×
{children}
); }; Drawer.propTypes = { active: PropTypes.bool, handleClickOutside: PropTypes.func.isRequired }; export default onClickOutside(Drawer);