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