hyper/app/index.js

10 lines
266 B
JavaScript
Raw Normal View History

2016-06-30 22:01:04 -08:00
import { render } from 'react-dom';
import HyperTerm from './hyperterm';
import React from 'react';
import Config from './config';
2016-06-30 22:01:04 -08:00
require('./css/hyperterm.css');
require('./css/tabs.css');
render(<Config><HyperTerm /></Config>, document.getElementById('mount'));