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

);