File size: 358 Bytes
227c43a
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import React from 'react';
import { Link } from 'react-router-dom';

function Error() {
  return (
    <div className="container mt-5 text-center">

      <h1>404 - Page Not Found</h1>

      <p>The page you are looking for does not exist.</p>

      <Link to="/" className="btn btn-primary">Go Home</Link>

    </div>
  );
}

export default Error;