UNPKG

gatsby-theme-guitar-book

Version:

A Gatsby theme for building guitar book websites

12 lines (10 loc) 288 B
import PageLayout from './src/components/page-layout'; import React from 'react'; export const wrapPageElement = ( {element, props}, // eslint-disable-line react/prop-types pluginOptions ) => ( <PageLayout {...props} pluginOptions={pluginOptions}> {element} </PageLayout> );