import { Document } from "asciidoctor"; import { DateTime } from "luxon"; type Props = { article: Document; date: DateTime; body: string; asset(path: string): string; }; export default ({ asset, article, date, body }: Props) => ( <>
{date.toLocaleString(DateTime.DATE_FULL)}

);