mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-09 06:43:24 +00:00
28 lines
540 B
JavaScript
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>;
|
|
}
|
|
}
|