2026-04-19 15:59:36 +09:00
|
|
|
import { BrowserView, MobileView } from 'react-device-detect'
|
2026-04-19 11:27:24 +09:00
|
|
|
import PCRoutes from './routes/pc'
|
2026-04-19 15:59:36 +09:00
|
|
|
import MobileRoutes from './routes/mobile'
|
2026-04-07 18:55:06 +09:00
|
|
|
|
|
|
|
|
export default function App() {
|
2026-04-19 15:59:36 +09:00
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<BrowserView>
|
|
|
|
|
<PCRoutes />
|
|
|
|
|
</BrowserView>
|
|
|
|
|
<MobileView>
|
|
|
|
|
<MobileRoutes />
|
|
|
|
|
</MobileView>
|
|
|
|
|
</>
|
|
|
|
|
)
|
2026-04-07 18:55:06 +09:00
|
|
|
}
|