28 lines
710 B
JavaScript
Raw Normal View History

2017-07-06 10:02:00 +02:00
/**
* NotFoundPage
*
* This is the page we show when the user visits a url that doesn't have a route
*
* NOTE: while this component should technically be a stateless functional
* component (SFC), hot reloading does not currently support SFCs. If hot
* reloading is not a neccessity for you then you can refactor it and remove
* the linting exception.
*/
2017-09-27 17:13:15 +02:00
import React from 'react';
2017-07-06 10:02:00 +02:00
import { FormattedMessage } from 'react-intl';
export default class NotFound extends React.Component {
render() {
return (
<div>
<div className="container">
<h1>
2017-08-17 11:30:30 +02:00
<FormattedMessage id="settings-manager.pageNotFound" />.
2017-07-06 10:02:00 +02:00
</h1>
</div>
</div>
);
}
}