Add default arg and heading

This commit is contained in:
Sam Carlton 2021-09-11 16:02:32 -05:00
parent 1a1d80fb77
commit 1c7d7c4fe0

View file

@ -1,9 +1,10 @@
import Layout from '@/components/layout/default.js'
function NotFound( props ) {
function NotFound( props = {} ) {
return (
<Layout>
<div>Not Found</div>
<div>Props</div>
<pre>{ JSON.stringify(props, null, '\t') }</pre>
</Layout>
)