rsnext/examples/with-app-layout/pages/_app.js
2020-01-20 16:13:04 -05:00

9 lines
207 B
JavaScript

import React from 'react'
const Layout = ({ children }) => <div className="layout">{children}</div>
export default ({ Component, pageProps }) => (
<Layout>
<Component {...pageProps} />
</Layout>
)