rsnext/examples/with-app-layout/pages/_app.js

10 lines
207 B
JavaScript
Raw Normal View History

2018-04-24 21:30:24 +02:00
import React from 'react'
const Layout = ({ children }) => <div className="layout">{children}</div>
2018-04-24 21:30:24 +02:00
export default ({ Component, pageProps }) => (
<Layout>
<Component {...pageProps} />
</Layout>
)