I get a modal page, when the user clicks the button, it works fine:
render() { return ( <div> <section> <button onClick={() => this.refs.simpleDialog.show()}>Open Modal</button> </section> <SkyLight hideOnOverlayClicked ref="simpleDialog" title="Test Modal"> Text that appears inside the modal page <Button onClick={() => this.refs.simpleDialog.hide()} >Got It</Button> </SkyLight> </div> )}
Question
Library used for modal: https://github.com/marcio/react-skylight
javascript reactjs react-jsx
Azicode
source share