import { DateTime } from "luxon"; import React from "react"; import { View } from "react-native"; import { Text } from "react-native-paper"; export default function DataLabelComponent({ label, content, dateTime, ...restProps }) { let theContent = content; if (dateTime && content) theContent = DateTime.fromISO(content).toLocaleString( DateTime.DATETIME_SHORT ); const { key, ...rest } = restProps; return ( {label} {theContent} ); }