gatsby-browser.js 207 B

123456
  1. import React from 'react';
  2. import { App } from './src/components/App';
  3. // Duplicated in gatsby-ssr.js for server side rendering during the build
  4. export const wrapRootElement = props => <App {...props} />;