Search term in query for all questions

This commit is contained in:
mrfry 2020-11-07 08:58:37 +01:00
parent 9aa0c111ce
commit 36a564498b
2 changed files with 20 additions and 15 deletions

View file

@ -3,10 +3,10 @@
import '../defaultStyles.css'
import Layout from '../components/layout'
function MyApp ({ Component, pageProps, router }) {
function MyApp({ Component, pageProps, router }) {
return (
<Layout route={router.route}>
<Component {...pageProps} />
<Component {...pageProps} router={router} />
</Layout>
)
}