local-weather/components/DailyCard/DailyTime.tsx
christian e52b362512
Some checks failed
Docker Build & Publish / Build Docker (push) Failing after 52s
changed to weekly from hourly
2024-05-12 07:06:44 +02:00

7 lines
147 B
TypeScript

import { headers } from "next/headers";
export default function DailyTime(props: {time: string}) {
return(
<p>{props.time}</p>
)
}