* Rename dxos to laconic * Use react-ux * Change package scopes from dxos to cerc-io * Comment github CI publishing package * Rename dxos to laconic in config files * Rename Laconic.org to Laconic
17 lines
371 B
JavaScript
17 lines
371 B
JavaScript
//
|
|
// Copyright 2020 DXOS.org
|
|
//
|
|
|
|
import debug from 'debug';
|
|
import React from 'react';
|
|
import { render } from 'react-dom';
|
|
|
|
import { Main } from '@cerc-io/console-app';
|
|
|
|
// Load from global printed into HTML page via template.
|
|
const { config } = window.__Laconic__;
|
|
|
|
debug.enable(config.system.debug);
|
|
|
|
render(<Main config={config} />, document.getElementById('root'));
|