aboutsummaryrefslogtreecommitdiff
path: root/app/src/main.tsx
blob: 3a8bd353f75c5ad90a99ebf0866b9f85b6395d5e (plain)
1
2
3
4
5
6
7
8
9
import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import App from './App.tsx';

createRoot(document.getElementById('root')!).render(
  <StrictMode>
    <App />
  </StrictMode>
);