mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
15 lines
No EOL
335 B
JavaScript
15 lines
No EOL
335 B
JavaScript
import Telescope from 'meteor/nova:lib';
|
|
import React from 'react';
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
const Error404 = () => {
|
|
return (
|
|
<div className="error404">
|
|
<h3><FormattedMessage id="app.404"/></h3>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
Error404.displayName = "Error404";
|
|
|
|
Telescope.registerComponent('Error404', Error404); |