2024-03-30 19:40:03 +08:00

17 lines
381 B
TypeScript

import DesktopPage from './(desktop)';
// import MobilePage from './(mobile)';
// import SessionHydration from './components/SessionHydration';
// import Migration from './features/Migration';
const Page = () => {
// const mobile = isMobileDevice();
// const Page = mobile ? MobilePage : DesktopPage;
const Page = DesktopPage;
return <Page />;
};
export default Page;