mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-12 20:18:41 -09:00
14 lines
408 B
JavaScript
14 lines
408 B
JavaScript
import { render } from 'react-dom';
|
|
import HyperTerm_ from './hyperterm';
|
|
import React from 'react';
|
|
import Config from './config';
|
|
import decorate from './plugins';
|
|
|
|
// make the component reload with plugin changes
|
|
const HyperTerm = decorate(HyperTerm_);
|
|
|
|
require('./css/hyperterm.css');
|
|
require('./css/tabs.css');
|
|
|
|
const app = <Config><HyperTerm /></Config>;
|
|
render(app, document.getElementById('mount'));
|