Files
ghall.space/src/components/FormattedDate.astro
T
2023-01-19 19:02:56 -05:00

12 lines
187 B
Plaintext

---
import { format, add } from "date-fns";
interface Props {
date: String;
}
const { date } = Astro.props;
---
<span>{format(add(new Date(date), { hours: 6 }), "MMM do, y")}</span>