summaryrefslogtreecommitdiff
path: root/examples/blog/src/components/FormattedDate.astro
blob: 9d51dc5fc942631a4c45b94ac61669795e872190 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
---
const { date } = Astro.props;
---

<time datetime={date.toISOString()}>
	{
		date.toLocaleDateString('en-us', {
			year: 'numeric',
			month: 'short',
			day: 'numeric',
		})
	}
</time>