2020-05-27 23:09:20 +00:00
|
|
|
//
|
2020-06-23 14:19:01 +00:00
|
|
|
// Copyright 2020 DXOS.org
|
2020-05-27 23:09:20 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
import debug from 'debug';
|
|
|
|
import React from 'react';
|
|
|
|
import { render } from 'react-dom';
|
|
|
|
|
2020-07-20 20:20:36 +00:00
|
|
|
import config from './config';
|
2020-05-27 23:09:20 +00:00
|
|
|
|
|
|
|
import Main from './containers/Main';
|
|
|
|
|
|
|
|
debug.enable(config.system.debug);
|
|
|
|
|
|
|
|
render(<Main config={config} />, document.getElementById('root'));
|