mirror of
https://github.com/logos-co/roadmap.git
synced 2025-01-11 00:45:47 +00:00
13 lines
231 B
TypeScript
13 lines
231 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}</>
|
|
}
|