mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-10-29 17:18:43 +08:00
17 lines
391 B
JavaScript
17 lines
391 B
JavaScript
import React from 'react';
|
|
import { Link } from 'react-router';
|
|
|
|
export class NotFoundPage extends React.Component {
|
|
render() {
|
|
return (
|
|
<div className="not-found">
|
|
<h1>404</h1>
|
|
<h2>Page not found!</h2>
|
|
<p>
|
|
<Link to="/">Go back to the main page</Link>
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|
|
}
|