2021-06-27 02:34:43 +03:00
|
|
|
import * as React from 'react';
|
|
|
|
|
import { render } from 'react-dom';
|
2022-07-14 13:38:00 +03:00
|
|
|
import { initContext } from './context/context';
|
2021-06-27 02:34:43 +03:00
|
|
|
|
2022-07-14 13:38:00 +03:00
|
|
|
import Home from './routes/Home';
|
2021-06-27 02:34:43 +03:00
|
|
|
|
2021-06-27 19:28:55 +03:00
|
|
|
initContext();
|
|
|
|
|
|
|
|
|
|
render(<Home />, document.getElementById('main'));
|