fix: use time HTML element for date strings (#1622)

This commit is contained in:
Bao
2024-12-03 00:41:55 -06:00
committed by GitHub
parent 7ac94e1d84
commit 0c4281eb53
4 changed files with 9 additions and 15 deletions

View File

@ -27,5 +27,5 @@ export function formatDate(d: Date, locale: ValidLocale = "en-US"): string {
}
export function Date({ date, locale }: Props) {
return <>{formatDate(date, locale)}</>
return <time datetime={date.toISOString()}>{formatDate(date, locale)}</time>
}