Add possibility of closing popups

This commit is contained in:
André Wahlberg 2020-11-27 17:25:29 +01:00
parent a1b078f418
commit 177bbdf89d

View File

@ -22,9 +22,13 @@ class Popup extends Component {
render() {
return (
<div className={`${this.state.visible ? "visible" : ""}` + " popup"}>
<>
<div className={`${this.state.visible ? "" : "hidden"}` + " popupClose"} onClick={this.hide} />
<div className={`${this.state.visible ? "visible" : ""}` + " popup " + this.props.className}>
{this.props.children}
</div>
</>
);
}
}