mirror of
https://github.com/kremalicious/portfolio.git
synced 2025-02-14 21:10:41 +01:00
9 lines
193 B
JavaScript
9 lines
193 B
JavaScript
import React from 'react'
|
|
import Layout from '../components/Layout'
|
|
|
|
const wrapPageElement = ({ element, props }) => (
|
|
<Layout {...props}>{element}</Layout>
|
|
)
|
|
|
|
export default wrapPageElement
|