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'
|
||||
|
||||
function NotFound( props ) {
|
||||
function NotFound( props = {} ) {
|
||||
return (
|
||||
<Layout>
|
||||
<div>Not Found</div>
|
||||
<div>Props</div>
|
||||
<pre>{ JSON.stringify(props, null, '\t') }</pre>
|
||||
</Layout>
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue