--- type Props = { readonly nextUrl?: string; readonly prevUrl?: string; }; const { nextUrl, prevUrl } = Astro.props; ---
{ prevUrl && ( < Prev ) } { nextUrl && ( Next > ) }