This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
website/src/pages/500.tsx

8 lines
152 B
TypeScript

import ErrorPage from 'features/ErrorPage/ErrorPage';
const Custom500 = () => {
return <ErrorPage statusCode={500} />;
};
export default Custom500;