import React from "react"; import PropTypes from "prop-types"; import Alert from "@mui/material/Alert"; import AlertTitle from "@mui/material/AlertTitle"; import Button from "@mui/material/Button"; function Error(props) { return (
Internal server error

{props.error}

); } Error.propTypes = { clearError: PropTypes.func.isRequired, clearToken: PropTypes.func.isRequired, error: PropTypes.string.isRequired }; export default Error;