import * as React from 'react' import { StyleSheet, Text, View } from 'react-native' type Props = { message: string } export function ErrorMessage({ message }: Props) { return ( {message} ) } const styles = StyleSheet.create({ fill: { flex: 1, justifyContent: 'center', alignItems: 'center', }, })