Skip to content

Instantly share code, notes, and snippets.

@JeremyTheModernist
Last active April 10, 2020 16:06
Show Gist options
  • Save JeremyTheModernist/be673e8641c61e6a427124acad1e05da to your computer and use it in GitHub Desktop.
Save JeremyTheModernist/be673e8641c61e6a427124acad1e05da to your computer and use it in GitHub Desktop.
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>
)
}
export default Index;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment