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