SPMS_WEB/react/src/main.tsx
SEAN 75d4a25a24
All checks were successful
SPMS_BO/pipeline/head This commit looks good
[] 새 프로젝트 생성
2025-12-03 14:24:49 +09:00

11 lines
230 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>,
)