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

13 lines
230 B
TypeScript
Raw Normal View History

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