import React, { FC } from "react"; interface IProps { error: any; } export const ErrorPage: FC = ({ error }) => { return (

{error}

); };