mirror of
https://github.com/BradNut/awesome-uses
synced 2025-09-08 17:40:31 +00:00
11 lines
188 B
JavaScript
11 lines
188 B
JavaScript
import React from 'react';
|
|
|
|
import Layout from '../components/layout';
|
|
|
|
const NotFoundPage = () => (
|
|
<Layout>
|
|
<p>WHAT R U DOING HERE</p>
|
|
</Layout>
|
|
);
|
|
|
|
export default NotFoundPage;
|