public_notes/quartz/components/Date.tsx

13 lines
231 B
TypeScript
Raw Normal View History

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