import React from 'react'; import { NextPage } from 'next'; const error: NextPage = () => ( <div> 404 ERROR </div> ); export default error;