import { asDate } from "@prismicio/helpers"; import { DateField } from "@prismicio/types"; const formatter = new Intl.DateTimeFormat("en-US", { month: "long", day: "numeric", year: "numeric", }); type DateProps = { dateField: DateField; }; export default function Date({ dateField }: DateProps) { const date = asDate(dateField); return ; }