1import { H1, H3 } from '@expo/html-elements'; 2import * as WebBrowser from 'expo-web-browser'; 3import React from 'react'; 4import { View } from 'react-native'; 5 6export default function RedirectScreen() { 7 const payload = WebBrowser.maybeCompleteAuthSession(); 8 9 return ( 10 <View style={{ flex: 1, alignItems: 'center', justifyContent: 'space-around' }}> 11 <H1>Redirect loading...</H1> 12 <H3>{payload.message}</H3> 13 </View> 14 ); 15} 16 17RedirectScreen.path = 'redirect'; 18