import { ErrorBanner } from "@/components/shared/error-banner"

type XmlApiErrorBannerProps = {
  message?: string | null
}

export function XmlApiErrorBanner({ message }: XmlApiErrorBannerProps) {
  return <ErrorBanner message={message} className="mb-4" />
}
