mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
Add default arg and heading
This commit is contained in:
parent
1a1d80fb77
commit
1c7d7c4fe0
1 changed files with 2 additions and 1 deletions
|
|
@ -1,9 +1,10 @@
|
||||||
import Layout from '@/components/layout/default.js'
|
import Layout from '@/components/layout/default.js'
|
||||||
|
|
||||||
function NotFound( props ) {
|
function NotFound( props = {} ) {
|
||||||
return (
|
return (
|
||||||
<Layout>
|
<Layout>
|
||||||
<div>Not Found</div>
|
<div>Not Found</div>
|
||||||
|
<div>Props</div>
|
||||||
<pre>{ JSON.stringify(props, null, '\t') }</pre>
|
<pre>{ JSON.stringify(props, null, '\t') }</pre>
|
||||||
</Layout>
|
</Layout>
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue