1 2 3 4 5 6 7 8 9 10 11 12
import React from 'react'; import { Link } from 'react-router-dom'; const Error404 = () => ( <div> <h1>No Match</h1> <Link to="/"> Take me back home ! <span role="img" aria-label="home">🏠</span> </Link> </div> ); export default Error404;