import { h, render } from 'preact'
import { Provider } from 'react-redux'
import { BrowserRouter, Switch, Route, Redirect } from 'react-router-dom'
// import client from './client'
import { store, history } from './store'
import * as socket from './socket'
import util from './util'
import Auth from './auth'
import { Header, AudioPlayer } from './common'
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'))