lillylabs / www.unlockopen.com

https://unlockopen.com/
MIT License
0 stars 0 forks source link

3. Import and wrap pages with the layout component #8

Open olavea opened 4 years ago

olavea commented 4 years ago
  1. Import and wrap pages with the layout component

Adhering to the normal React composition model, import your layout component and use it to wrap the content of the page.


src/pages/index.js
import React from "react"
import Layout from "../components/layout"

export default () => (
  <Layout>
    <div>Hello World</div>
  </Layout>
)
olavea commented 4 years ago

Looks like this is already done. What do you think @raae ?