Add possibility of closing popups
This commit is contained in:
parent
a1b078f418
commit
177bbdf89d
@ -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>
|
||||||
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user