keroosha.cybergulag.today/quartz/components/Date.tsx

16 lines
265 B
TypeScript
Raw Normal View History

2023-07-01 10:03:01 +03:00
interface Props {
date: Date
}
2023-08-09 07:28:09 +03:00
export function formatDate(d: Date): string {
return d.toLocaleDateString("en-US", {
2023-07-01 10:03:01 +03:00
year: "numeric",
month: "short",
2023-07-23 03:27:41 +03:00
day: "2-digit",
2023-07-01 10:03:01 +03:00
})
2023-08-09 07:28:09 +03:00
}
export function Date({ date }: Props) {
return <>{formatDate(date)}</>
2023-07-01 10:03:01 +03:00
}