UNPKG

179 BJavaScriptView Raw
1import React from 'react'
2import Layout from './src/components/layout'
3
4export const wrapPageElement = ({ element, props }) => {
5 return <Layout {...props} >{element}</Layout>
6}