Skip to content

Instantly share code, notes, and snippets.

@yathindrak
Created June 18, 2022 08:22
Show Gist options
  • Save yathindrak/26238bf1129ebb39bd2c9574f80ec876 to your computer and use it in GitHub Desktop.
Save yathindrak/26238bf1129ebb39bd2c9574f80ec876 to your computer and use it in GitHub Desktop.
import React from "react";
import PageLayout from "./src/components/layout";
export const wrapRootElement = ({ element }) => {
return (
<>
<PageLayout>
{element}
</PageLayout>
</>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment