import { CustomError } from '../../constants/errors'; /** * Render the ErrorPage component. * * @param props - The props for the ErrorPage component. * @returns The rendered ErrorPage component. */ const ErrorPage: React.FC = (props) => { return (

{`${props.status}`}

{props.title}

{props.subTitle}
); }; export default ErrorPage;