summaryrefslogtreecommitdiff
path: root/src/client/main.tsx
blob: b895c801e8cccec005f3b9061d5e3884ff188c79 (plain)
1
2
3
4
5
6
7
8
9
10
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App';
import './index.css'; // We'll create this file later for styles

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