homepage/src/components/layout.js

13 lines
333 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"
export default ({ path, editLink, children }) => (
2019-12-11 21:34:32 +00:00
<>
<Nav path={path} />
2019-12-11 21:34:32 +00:00
<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
</>
)