import React from 'react'; import { View, Text } from 'react-native'; import styles from '../styles/stylesheet'; const DataBox = ({ label, data }: { label: string; data: string }) => { return ( {label} {data} ); }; export default DataBox;