Files
lst_v3/lstMobile/src/components/HomeHeader.tsx
Blake Matthes 3734d9daac
All checks were successful
Build and Push LST Docker Image / docker (push) Successful in 2m7s
feat(lstmobile): intial scanner setup kinda working
2026-04-17 16:47:09 -05:00

25 lines
521 B
TypeScript

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 (
<View >
<Text style={styles.date}>{currentDate}</Text>
</View>
);
}
const styles = StyleSheet.create({
date: {
fontSize: 14,
color: colors.textSecondary,
marginTop: 4,
marginBottom: 30,
},
});