Files
coriolis/src/app/pages/NotFoundPage.jsx
Colin McLeod 9175fb60af 2.0.1 Beta
2016-02-13 22:48:48 -08:00

28 lines
540 B
JavaScript

import React from 'react';
import Page from './Page';
/**
* 404 Page
*/
export default class NotFoundPage extends Page {
/**
* Constructor
* @param {Object} props React Component properties
*/
constructor(props) {
super(props);
this.state = {
title: 'Page Not Found'
};
}
/**
* Render the Page
* @return {React.Component} The page contents
*/
renderPage() {
return <div className='page' style={{ marginTop: 30 }}>Page <small>{this.context.route.path}</small> Not Found</div>;
}
}