local-weather/components/HourlyCard/HourlyTime.tsx

7 lines
148 B
TypeScript
Raw Permalink Normal View History

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