Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gatsby-browser.js « docs - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b1425d1fb58cff3e4b3fc0883956cf5983532d94 (plain)
1
2
3
4
5
6
7
8
import React from 'react'
import Layout from './src/components/layout'
require('prismjs/themes/prism-tomorrow.css')
require('./src/main.css')

export const wrapPageElement = ({ element, props }) => {
  return <Layout {...props} >{element}</Layout>
}