Vulcan/packages/nova-base-components/lib/common/Error404.jsx

15 lines
338 B
React
Raw Normal View History

import { registerComponent } from 'meteor/nova:core';
import React from 'react';
2016-06-09 17:42:20 +09:00
import { FormattedMessage } from 'react-intl';
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>
)
}
Error404.displayName = "Error404";
registerComponent('Error404', Error404);