diff --git a/opentech/static_src/src/app/src/App.js b/opentech/static_src/src/app/src/App.js index b0468f3dddb764358d9a76474f696a5b013aff0f..5382959cbfc5a2b0ca48d337c4c58ef9f3f8f788 100644 --- a/opentech/static_src/src/app/src/App.js +++ b/opentech/static_src/src/app/src/App.js @@ -25,11 +25,11 @@ class App extends React.Component { render() { return ( - <div> + <> <Switcher selector='react-switcher' open={this.state.detailOpen} handleOpen={this.detailOpen} handleClose={this.detailClose} /> <div style={this.state.style} ref={this.setOriginalContentRef} dangerouslySetInnerHTML={{ __html: this.props.pageContent }} /> {this.state.detailOpen && <div><h2>THIS IS REACT</h2></div>} - </div> + </> ) } }