forked from cerc-io/laconic-console
17 lines
365 B
JavaScript
17 lines
365 B
JavaScript
//
|
|
// Copyright 2020 DXOS.org
|
|
//
|
|
|
|
import debug from 'debug';
|
|
import React from 'react';
|
|
import { render } from 'react-dom';
|
|
|
|
import { Main } from '@dxos/console-app';
|
|
|
|
// Load from global printed into HTML page via template.
|
|
const { config } = window.__DXOS__;
|
|
|
|
debug.enable(config.system.debug);
|
|
|
|
render(<Main config={config} />, document.getElementById('root'));
|