import { Component } from 'react'
export default class Overlay extends Component {
static propTypes = {
show: React.PropTypes.bool
};
constructor(props, context) {
super(props);
}
render() {
const { show } = this.props;
return (
<div id="overlay">
{show &&
this.props.children
}
</div>
)
}
}
import { Component } from 'react'
export defau