How to use the @iobroker/adapter-react/createTheme function in @iobroker/adapter-react

To help you get started, we’ve selected a few @iobroker/adapter-react examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github ioBroker / ioBroker.javascript / src / src / index.js View on Github external
function build() {
    if (typeof Map === 'undefined') {
        console.log('Something is wrong')
    }
    return ReactDOM.render(
         {
            theme = _theme;
            build();
        }}/>
    , document.getElementById('root'));

}
github ioBroker / ioBroker.iot / src / src / index.js View on Github external
function build() {
    return ReactDOM.render(
         {
            theme = _theme;
            build();
        }}/>
    , document.getElementById('root'));
}