maplestory/frontend/src/App.jsx
caadiq 57715726b8 react-device-detect 도입 (PC / 모바일 라우트 분기)
- App.jsx: BrowserView / MobileView 로 분기 렌더
- 모바일 접속 시 routes/mobile.jsx (현재 '준비 중' placeholder) 렌더
- 구조 개편 후 실제 device 감지 활성화

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-19 15:59:36 +09:00

16 lines
331 B
JavaScript

import { BrowserView, MobileView } from 'react-device-detect'
import PCRoutes from './routes/pc'
import MobileRoutes from './routes/mobile'
export default function App() {
return (
<>
<BrowserView>
<PCRoutes />
</BrowserView>
<MobileView>
<MobileRoutes />
</MobileView>
</>
)
}