mancala/src/App.tsx

9 lines
204 B
TypeScript
Raw Normal View History

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