import type { JSX } from "preact"; import { Button } from "./Button.tsx"; interface LoadMoreProps { nextUrl?: string; loading?: boolean; } export function LoadMore({ nextUrl, loading = false }: LoadMoreProps): JSX.Element | null { if (!nextUrl) { return null; } return (