Files
redash/client/app/components/ApplicationArea/ErrorMessageDetails.jsx
2020-10-15 14:25:22 -03:00

12 lines
273 B
JavaScript

import React from "react";
import PropTypes from "prop-types";
export function ErrorMessageDetails(props) {
return <h4>{props.message}</h4>;
}
ErrorMessageDetails.propTypes = {
error: PropTypes.instanceOf(Error).isRequired,
message: PropTypes.string.isRequired,
};