import React from 'react' const Overlay = props => (
{props.isOver ?
{props.title}
: null} {props.children}
) export default Overlay