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 socket from './socket' import Header from './common/header.component' import Dashboard from './dashboard/dashboard.component' import System from './system/system.component' import Pix2Pix from './pix2pix' const app = (
) render(app, document.getElementById('container'))