Layout active tab highlight, textarea styling

This commit is contained in:
MrFry 2020-03-15 11:42:09 +01:00
parent c5d6518ceb
commit dd0ad7731b
5 changed files with 15 additions and 5 deletions

View file

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