import { type ReactNode } from "react"; interface ErrorBannerProps { children: ReactNode; action?: ReactNode; } export function ErrorBanner({ children, action }: ErrorBannerProps) { return (
{children}
{action}
); }