import { View, Text, StyleSheet } from 'react-native'; import React from 'react'; type HintProps = { message: string; }; const HintMessage = (props: HintProps) => { return ( {props.message} ); }; const styles = StyleSheet.create({ hintText: { fontSize: 16, fontWeight: 'bold', color: 'white', marginBottom: 30, marginHorizontal: 60, textAlign: 'center', }, }); export default HintMessage;