2016-12-06 18:06:29 +01:00
|
|
|
import { registerComponent } from 'meteor/nova:lib';
|
2016-03-30 09:24:52 +09:00
|
|
|
import React from 'react';
|
2016-06-09 17:42:20 +09:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2016-03-30 09:24:52 +09:00
|
|
|
|
2016-03-28 10:55:19 +09:00
|
|
|
const Error404 = () => {
|
|
|
|
return (
|
|
|
|
<div className="error404">
|
2016-06-09 17:42:20 +09:00
|
|
|
<h3><FormattedMessage id="app.404"/></h3>
|
2016-03-28 10:55:19 +09:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2016-05-22 16:42:24 +09:00
|
|
|
Error404.displayName = "Error404";
|
|
|
|
|
2016-12-06 18:06:29 +01:00
|
|
|
registerComponent('Error404', Error404);
|