import React from "react"; import { StyleSheet, Text, View } from "react-native"; import { colors, globalStyles } from "../stlyes/global"; export default function HomeHeader() { const currentDate = new Date().toLocaleDateString("en-US", { weekday: "long", month: "long", day: "numeric", }); return ( {currentDate} ); } const styles = StyleSheet.create({ date: { fontSize: 14, color: colors.textSecondary, marginTop: 4, marginBottom: 30, }, });