2016-06-30 22:01:04 -08:00
|
|
|
import { render } from 'react-dom';
|
2016-07-08 13:26:23 -08:00
|
|
|
import HyperTerm_ from './hyperterm';
|
2016-06-30 22:01:04 -08:00
|
|
|
import React from 'react';
|
2016-07-07 07:15:03 -08:00
|
|
|
import Config from './config';
|
2016-07-08 13:26:23 -08:00
|
|
|
import decorate from './plugins';
|
|
|
|
|
|
|
|
|
|
// make the component reload with plugin changes
|
|
|
|
|
const HyperTerm = decorate(HyperTerm_);
|
2016-06-30 22:01:04 -08:00
|
|
|
|
|
|
|
|
require('./css/hyperterm.css');
|
|
|
|
|
require('./css/tabs.css');
|
|
|
|
|
|
2016-07-08 13:26:23 -08:00
|
|
|
const app = <Config><HyperTerm /></Config>;
|
2016-07-07 16:16:44 -08:00
|
|
|
render(app, document.getElementById('mount'));
|