homepage/src/components/layout.js

13 lines
315 B
JavaScript
Raw Normal View History

2019-12-11 21:34:32 +00:00
import React from "react"
import Nav from "../components/nav"
import Footer from "../components/footer"
import layoutStyles from "./layout.module.css"
2019-12-14 16:10:54 +00:00
export default ({ editLink, children }) => (
2019-12-11 21:34:32 +00:00
<>
<Nav />
<div className={layoutStyles.layout}>{children}</div>
2019-12-14 16:10:54 +00:00
<Footer editLink={editLink} />
2019-12-11 21:34:32 +00:00
</>
)