Files
MERN-template/client/pages/not-found.jsx
T
Ratstail91 2964c1e448 Updated dependencies
* Removed 'react-router-dom' as no longer needed

Linked to:

* news-server v1.7.4
* auth-server v1.8.10
* chat-server v1.5.4
2025-09-18 10:48:24 +10:00

22 lines
471 B
React

import React from 'react';
import { Link } from 'react-router';
import ApplyToBody from './utilities/apply-to-body';
const NotFound = props => {
return (
<>
<ApplyToBody className='dashboard' />
<div className='page'>
<div className='central panel centered middle'>
<h1 className='text centered'>Page Not Found</h1>
<br />
<Link className='text centered' to='/'>Return Home</Link>
</div>
</div>
</>
);
};
export default NotFound;