import React from 'react' import { View, TouchableOpacity, ViewProps } from 'react-native' import Text from './ui/Text' interface ErrorStateProps extends ViewProps { message?: string onRetry?: () => void } export default function ErrorState({ message = 'An error occurred', onRetry, testID, ...props }: ErrorStateProps) { return ( {message} {onRetry && ( Retry )} ) }