import React from 'react' import { View, Text, StyleSheet } from 'react-native' import { globalStyles } from '../../../styles/GlobalStyles' export type Props = { text: string } export const ErrorMessage: React.FC = ({ text }) => { return ( {text} ) } const styles = StyleSheet.create({ errorText: { color: '#EB3437', }, })