quartz-research-note/quartz/components/Date.tsx
2023-07-01 00:03:01 -07:00

13 lines
230 B
TypeScript

interface Props {
date: Date
}
export function Date({ date }: Props) {
const formattedDate = date.toLocaleDateString('en-US', {
year: "numeric",
month: "short",
day: '2-digit'
})
return <>{formattedDate}</>
}