9 lines
219 B
TypeScript
9 lines
219 B
TypeScript
import * as React from 'react';
|
|
import { render } from 'react-dom';
|
|
import { initContext } from './context/context';
|
|
|
|
import Home from './routes/Home';
|
|
|
|
initContext();
|
|
|
|
render(<Home />, document.getElementById('main')); |