PATH:
home
/
urbaoubp
/
gns.pitgradnja.com
/
wp-content
/
plugins
/
complianz-gdpr
/
settings
/
src
/
Modal
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
[-] ModalControl.js
[edit]
[+]
..
[-] Modal.js
[edit]