Files
AI/참고/firecrawl-main/apps/test-site/src/components/FormattedDate.astro

18 lines
240 B
Plaintext
Raw Normal View History

2026-05-12 19:40:31 +09:00
---
interface Props {
date: Date;
}
const { date } = Astro.props;
---
<time datetime={date.toISOString()}>
{
date.toLocaleDateString("en-us", {
year: "numeric",
month: "short",
day: "numeric",
})
}
</time>