| import { parseISO, format } from "date-fns"; | |
| type Props = { | |
| dateString: string; | |
| }; | |
| export default function Date({ dateString }: Props) { | |
| const date = parseISO(dateString); | |
| return <time dateTime={dateString}>{format(date, "LLLL d, yyyy")}</time>; | |
| } | |
| import { parseISO, format } from "date-fns"; | |
| type Props = { | |
| dateString: string; | |
| }; | |
| export default function Date({ dateString }: Props) { | |
| const date = parseISO(dateString); | |
| return <time dateTime={dateString}>{format(date, "LLLL d, yyyy")}</time>; | |
| } | |