import Modal from "./Modal"; interface ErrorModalProps { isOpen: boolean; titleText: string; contentText: string; onClose: () => void; } export default function ErrorModal({ isOpen, onClose, titleText, contentText, }: ErrorModalProps) { const ErrorTitle = (
{titleText}

); const bottomContent = (
Hint: Komodor has the same HELM capabilities, with enterprise features and support.{" "} Sign up for free.
); return (

{contentText}

); }