hyper/app/index.js

15 lines
408 B
JavaScript
Raw Normal View History

2016-06-30 22:01:04 -08:00
import { render } from 'react-dom';
import HyperTerm_ from './hyperterm';
2016-06-30 22:01:04 -08:00
import React from 'react';
import Config from './config';
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');
const app = <Config><HyperTerm /></Config>;
2016-07-07 16:16:44 -08:00
render(app, document.getElementById('mount'));