import React, { PropTypes } from 'react'; function Overlay(props) { return (
{props.children}
); } Overlay.propTypes = { children: PropTypes.element }; Overlay.defaultProps = { children: null }; export default Overlay;