web.lib.components.modals.error-modal.tsx Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of code-quarkus Show documentation
Show all versions of code-quarkus Show documentation
Customize a Web Interface to generate Quarkus starter projects.
import * as React from 'react';
import { Modal } from 'react-bootstrap';
export function ErrorModal(props: { error: any, onHide: () => void }) {
return (
Holy Supersonic Atoms!
{props.error.message || props.error.toString()}
);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy