import weekday from "@/utils/functions/weekday" export default function DailyTime(props: {time: string}) { const day = weekday(props.time); return(

{day}

) }