mancala/src/App.tsx
2022-07-14 13:38:00 +03:00

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'));