1 2 3 4 5 6 7 8
import React from 'react'; import ReactDOM from 'react-dom'; import Main from './main'; window.sonarqube.appStarted.then(options => { let el = document.querySelector(options.el); ReactDOM.render(<Main options={options}/>, el); });