25 lines
810 B
TypeScript
25 lines
810 B
TypeScript
import { useEffect, useState } from 'react';
|
|
import { useTeamsPageLogic } from './TeamsPage/TeamsPageLogic';
|
|
import TeamsPageWeb from './TeamsPage/components/TeamsPageWeb';
|
|
import TeamsPageH5 from './TeamsPage/components/TeamsPageH5';
|
|
|
|
const isMobileDevice = () => {
|
|
if (typeof window === 'undefined') return false;
|
|
return window.innerWidth < 768;
|
|
};
|
|
|
|
export default function TeamsPage() {
|
|
const logic = useTeamsPageLogic();
|
|
const [isMobile, setIsMobile] = useState(isMobileDevice());
|
|
|
|
useEffect(() => {
|
|
const handleResize = () => {
|
|
setIsMobile(isMobileDevice());
|
|
};
|
|
window.addEventListener('resize', handleResize);
|
|
return () => window.removeEventListener('resize', handleResize);
|
|
}, []);
|
|
|
|
return isMobile ? <TeamsPageH5 logic={logic} /> : <TeamsPageWeb logic={logic} />;
|
|
}
|