mancala/src/App.tsx

9 lines
288 B
TypeScript
Raw Normal View History

2022-07-14 13:38:00 +03:00
import { initContext } from './context/context';
2021-06-27 19:28:55 +03:00
initContext();
2022-07-17 08:38:25 +03:00
import * as React from 'react';
import { createRoot } from 'react-dom/client';
const container = document.getElementById('main');
const root = createRoot(container!);
import Home from './routes/Home';
root.render(<Home/>);