mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 12:38:39 -09:00
16 lines
348 B
JavaScript
16 lines
348 B
JavaScript
import { render } from 'react-dom';
|
|
import HyperTerm from './hyperterm';
|
|
import React from 'react';
|
|
import Config from './config';
|
|
import Plugins from './plugins';
|
|
|
|
require('./css/hyperterm.css');
|
|
require('./css/tabs.css');
|
|
|
|
const app = <Config>
|
|
<Plugins>
|
|
<HyperTerm />
|
|
</Plugins>
|
|
</Config>;
|
|
|
|
render(app, document.getElementById('mount'));
|