Skip to content

Instantly share code, notes, and snippets.

@JeremyTheModernist
JeremyTheModernist / index.js
Last active April 10, 2020 16:06
A gist for Gatsby Recipe Layout Component
import React from 'react'
const Index = (props) => {
return (
<div>
<h1>your nav here</h1>
{props.children}
<h1>your footer here</h1>
</div>
)