mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 01:35:17 +01:00
11 lines
182 B
JavaScript
11 lines
182 B
JavaScript
import React from 'react';
|
|
import Layout from 'components/Layout';
|
|
|
|
export default function Custom404() {
|
|
return (
|
|
<Layout>
|
|
<h1>oops! not found</h1>
|
|
</Layout>
|
|
);
|
|
}
|