Live video on the AT Protocol
at eli/docker-linting 10 lines 296 B view raw
1import { View, Text, Button } from "tamagui"; 2 3export default function (props: { onRetry: () => void }) { 4 return ( 5 <View f={1} justifyContent="center" alignItems="center"> 6 <Text>Unable to contact server.</Text> 7 <Button onPress={props.onRetry}>Retry?</Button> 8 </View> 9 ); 10}