mirror of
https://github.com/hazemKrimi/touch-programming.git
synced 2026-05-01 18:20:26 +00:00
14 lines
326 B
TypeScript
14 lines
326 B
TypeScript
import { createRoot } from 'react-dom/client';
|
|
import { BrowserRouter } from 'react-router';
|
|
|
|
import App from './App.tsx';
|
|
|
|
import './index.css';
|
|
|
|
// TODO: Bring back strict mode when building and deploying
|
|
createRoot(document.querySelector('#root') as HTMLElement).render(
|
|
<BrowserRouter>
|
|
<App />
|
|
</BrowserRouter>
|
|
);
|