/
var
/
www
/
barefootlaw.org
/
wp-content
/
plugins
/
really-simple-ssl
/
settings
/
src
/
Modal
/
Upload File
HOME
import {Component} from "@wordpress/element"; class ModalControl extends Component{ constructor() { super( ...arguments ); } componentDidMount() { this.onClickHandler = this.onClickHandler.bind(this); } onClickHandler(){ this.props.handleModal(true, this.props.modalData ); } render(){ return ( <button className={"button button-" + this.props.btnStyle} onClick={ (e) => this.onClickHandler(e) }>{this.props.btnText}</button> ) } } export default ModalControl