- App.jsx: BrowserView / MobileView 로 분기 렌더 - 모바일 접속 시 routes/mobile.jsx (현재 '준비 중' placeholder) 렌더 - 구조 개편 후 실제 device 감지 활성화 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
16 lines
331 B
JavaScript
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>
|
|
</>
|
|
)
|
|
}
|