7 lines
207 B
JavaScript
7 lines
207 B
JavaScript
|
import React from 'react';
|
||
|
|
||
|
import { App } from './src/components/App';
|
||
|
|
||
|
// Duplicated in gatsby-ssr.js for server side rendering during the build
|
||
|
export const wrapRootElement = props => <App {...props} />;
|