wormhole/explorer/plugins/gatsby-plugin-top-layout/gatsby-ssr.js

7 lines
153 B
JavaScript

import React from "react";
import TopLayout from "./TopLayout";
export const wrapRootElement = ({ element }) => (
<TopLayout>{element}</TopLayout>
);