import type { ReactElement } from 'react'; import { useLocalSearchParams } from 'expo-router'; import { GroupInfoScreen } from '@/features/profile'; export default function GroupInfoRoute(): ReactElement | null { const params = useLocalSearchParams<{ id: string }>(); const id = typeof params.id === 'string' ? params.id : null; if (id === null) { return null; } return ; }