local-weather/components/DailyCard/DailyTime.tsx

7 lines
147 B
TypeScript
Raw Normal View History

2024-05-12 05:06:44 +00:00
import { headers } from "next/headers";
export default function DailyTime(props: {time: string}) {
return(
<p>{props.time}</p>
)
}