local-weather/components/DailyCard/DailyTime.tsx
ChrQR 83b337db03
All checks were successful
Docker Build & Publish / Build Docker (push) Successful in 1m9s
Fixed for mobile?
2024-05-12 21:14:36 +02:00

9 lines
206 B
TypeScript

import weekday from "@/utils/functions/weekday"
export default function DailyTime(props: {time: string}) {
const day = weekday(props.time);
return(
<p className="text-sm">{day}</p>
)
}