1import React from 'react'; 2 3const NotFound = () => { 4 return <h1>404! That page does not exist :(</h1>; 5}; 6 7export default NotFound;