Phase 1: 도면 자재 분석 업로드 페이지 구현

This commit is contained in:
Hyungi Ahn
2025-07-14 14:20:54 +09:00
parent 13c375477a
commit f3189dc050
10 changed files with 1595 additions and 0 deletions

10
frontend/src/main.jsx Normal file
View File

@@ -0,0 +1,10 @@
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App.jsx'
import './index.css'
ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode>
<App />
</React.StrictMode>,
)