import { h, render } from 'preact' import { Provider } from 'react-redux' import { BrowserRouter, Route } from 'react-router-dom' // import client from './client' import { store, history } from './store' import * as socket from './socket' import * as util from './util' import Header from './common/header.component' import System from './system/system.component' import Dashboard from './dashboard/dashboard.component' import modules from './modules' const module_list = Object.keys(modules).map(name => { const module = modules[name] return ( ) }) const app = (
{module_list}
) render(app, document.getElementById('container'))