diff --git a/src/index.js b/src/index.js index 3e4aac9308..521c49e5b8 100644 --- a/src/index.js +++ b/src/index.js @@ -27,6 +27,8 @@ import {isDefined} from 'gmp/utils/identity'; import App from './web/app.js'; +import {StyleSheetManager} from 'styled-components'; + const config = isDefined(global.config) ? global.config : {}; const {sentryDSN, sentryEnvironment} = config; @@ -38,6 +40,11 @@ Sentry.init({ release: GSA_VERSION, }); -ReactDOM.render(, document.getElementById('app')); +ReactDOM.render( + + + , + document.getElementById('app'), +); // vim: set ts=2 sw=2 tw=80: