mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
9 lines
266 B
JavaScript
9 lines
266 B
JavaScript
import { render } from 'react-dom';
|
|
import HyperTerm from './hyperterm';
|
|
import React from 'react';
|
|
import Config from './config';
|
|
|
|
require('./css/hyperterm.css');
|
|
require('./css/tabs.css');
|
|
|
|
render(<Config><HyperTerm /></Config>, document.getElementById('mount'));
|