22 lines
376 B
Plaintext
22 lines
376 B
Plaintext
---
|
|
export interface Props {
|
|
date?: Date | string;
|
|
}
|
|
|
|
const { date } = Astro.props;
|
|
|
|
const parsedDate = typeof date === 'string' ? new Date(date) : date;
|
|
---
|
|
|
|
{
|
|
parsedDate && (
|
|
<time datetime={parsedDate.toISOString()}>
|
|
{parsedDate.toLocaleDateString('en-us', {
|
|
year: 'numeric',
|
|
month: 'long',
|
|
day: 'numeric',
|
|
})}
|
|
</time>
|
|
)
|
|
}
|