mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
12 lines
257 B
JavaScript
12 lines
257 B
JavaScript
import Layout from '@/components/layout/default.js'
|
|
|
|
function NotFound( props ) {
|
|
return (
|
|
<Layout>
|
|
<div>Not Found</div>
|
|
<pre>{ JSON.stringify(props, null, '\t') }</pre>
|
|
</Layout>
|
|
)
|
|
}
|
|
|
|
export default NotFound
|