Skip to content

Commit

Permalink
Update .gitignore + add gatsby & gatsby-link + hello world page
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleAMathews committed Jul 26, 2017
1 parent 543085d commit 6107f5d
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -57,3 +57,5 @@ typings/
# dotenv environment variables file
.env

.cache/
public
14 changes: 14 additions & 0 deletions package.json
@@ -0,0 +1,14 @@
{
"name": "gatsby-starter-hello-world",
"description": "Gatsby hello world starter",
"license": "MIT",
"scripts": {
"develop": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve"
},
"dependencies": {
"gatsby": "^1.4.1",
"gatsby-link": "^1.4.1"
}
}
3 changes: 3 additions & 0 deletions src/pages/index.js
@@ -0,0 +1,3 @@
import React from "react"

export default () => <div>Hello world!</div>

0 comments on commit 6107f5d

Please sign in to comment.