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() { render() {
return ( return (
<div className={`${this.state.visible ? "visible" : ""}` + " popup"}> <>
{this.props.children} <div className={`${this.state.visible ? "" : "hidden"}` + " popupClose"} onClick={this.hide} />
</div>
<div className={`${this.state.visible ? "visible" : ""}` + " popup " + this.props.className}>
{this.props.children}
</div>
</>
); );
} }
} }