바로 포폴 정상화화

This commit is contained in:
암냥 2025-02-10 06:13:31 +09:00
commit de09401b68
45 changed files with 4401 additions and 1800 deletions

16
src/main.tsx Normal file
View file

@ -0,0 +1,16 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import { BrowserRouter } from "react-router";
import './index.css'
import App from './App.tsx'
import BottomBar from './components/BottomBar.tsx';
createRoot(document.getElementById('root')!).render(
<StrictMode>
<BrowserRouter>
<BottomBar />
<App />
</BrowserRouter>
</StrictMode>,
)