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