Files
filestash/client/pages/notfound.js
2017-06-27 21:59:40 +10:00

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>
);
}
}