mirror of
https://github.com/kremalicious/umami.git
synced 2024-10-31 23:35:32 +01:00
16 lines
387 B
JavaScript
16 lines
387 B
JavaScript
import React from 'react';
|
|
import Layout from 'components/layout/Layout';
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
export default function Custom404() {
|
|
return (
|
|
<Layout>
|
|
<div className="row justify-content-center">
|
|
<h1>
|
|
<FormattedMessage id="message.page-not-found" defaultMessage="Page not found" />
|
|
</h1>
|
|
</div>
|
|
</Layout>
|
|
);
|
|
}
|