quartz-research-note/quartz/components/Date.tsx

13 lines
231 B
TypeScript
Raw Normal View History

2023-07-01 07:03:01 +00:00
interface Props {
date: Date
}
export function Date({ date }: Props) {
2023-07-23 00:27:41 +00:00
const formattedDate = date.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
})
return <>{formattedDate}</>
}