import React from 'react'; const NotFound = () => { return ( <div> This is a fallback err page, no pag found! </div> ); }; export default NotFound;