서사형 덱빌딩 게임 프로토 타입

This commit is contained in:
Kyoung5seo
2026-06-15 23:10:54 +09:00
parent e1310bc872
commit e1f5cafdf1
49 changed files with 3261 additions and 7477 deletions

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

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