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/404.tsx

8 lines
152 B
TypeScript

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