Try showing prop data on 404

This commit is contained in:
Sam Carlton 2021-09-11 15:50:26 -05:00
parent c3a58ce424
commit 74d2ae26b0
2 changed files with 6 additions and 5 deletions

View file

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