blob: 268ca65e336208323eab3d65d875a789f2b614f4 (
plain)
1
2
3
4
5
6
7
|
import React from 'react';
import Main from './main';
window.sonarqube.appStarted.then(options => {
let el = document.querySelector(options.el);
React.render(<Main options={options}/>, el);
});
|