Skip to content

Instantly share code, notes, and snippets.

@konstantinmuenster
Created May 24, 2020 17:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save konstantinmuenster/6038ad8503bfdcd6f7c08a5d7794e9eb to your computer and use it in GitHub Desktop.
Save konstantinmuenster/6038ad8503bfdcd6f7c08a5d7794e9eb to your computer and use it in GitHub Desktop.
index.js (3) - How To Gatsby Portfolio
import React from "react"
import Layout from "../components/layout"
import Hero from "../components/hero"
const IndexPage = () => {
return (
<Layout>
<Hero />
</Layout>
)
}
export default IndexPage
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment