mirror of
https://github.com/RYDE-WORK/Langchain-Chatchat.git
synced 2026-01-30 02:35:29 +08:00
17 lines
381 B
TypeScript
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;
|