blob: b9a1a6deac8775b5598874b2bc3c7971d82cf211 [file] [log] [blame]
TRM-codingbe1a6192025-06-11 22:18:02 +08001import { StrictMode } from 'react'
2import { createRoot } from 'react-dom/client'
3import './index.css'
4import App from './App.jsx'
5
6createRoot(document.getElementById('root')).render(
7 <StrictMode>
8 <App />
9 </StrictMode>,
10)