Baseline Expo52 and Dev Version

This commit is contained in:
Patrick Fic
2025-02-12 10:05:12 -08:00
parent 486332aae6
commit 23fdb02375
6 changed files with 2548 additions and 1885 deletions

View File

@@ -14,9 +14,9 @@ export default function DataLabelComponent({
theContent = DateTime.fromISO(content).toLocaleString(
DateTime.DATETIME_SHORT
);
const { key, ...rest } = restProps;
return (
<View {...restProps} style={{ margin: 4, ...restProps.style }}>
<View {...rest} style={{ margin: 4, ...restProps.style }}>
<Text style={{ color: "slategray" }}>{label}</Text>
<Text>{theContent}</Text>
</View>