Files
CICD_Learning/front/src/main.tsx
2025-09-02 22:41:02 +08:00

11 lines
229 B
TypeScript

import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.tsx'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>
)