eb6bcd9c95
Use Moustache to create template and set config in page. Use babel plugins to process GQL (and fix GQL queries). Added service type.
16 lines
304 B
JavaScript
16 lines
304 B
JavaScript
//
|
|
// Copyright 2020 DxOS.org
|
|
//
|
|
|
|
import debug from 'debug';
|
|
import React from 'react';
|
|
import { render } from 'react-dom';
|
|
|
|
import config from '../config.yml';
|
|
|
|
import Main from './containers/Main';
|
|
|
|
debug.enable(config.system.debug);
|
|
|
|
render(<Main config={config} />, document.getElementById('root'));
|