import { Alert } from "react-bootstrap"; import { ErrorWithLabel } from "../rqbit-web"; export const ErrorComponent = (props: { error: ErrorWithLabel | null; remove?: () => void; }) => { let { error, remove } = props; if (error == null) { return null; } return ( {error.text} {error.details?.statusText && (

{error.details?.statusText}

)}
{error.details?.text}
); };