Update .gitignore + add gatsby & gatsby-link + hello world page

This commit is contained in:
Kyle Mathews
2017-07-26 13:54:03 -06:00
parent 543085dcf8
commit 6107f5d9bd
3 changed files with 19 additions and 0 deletions
+2
View File
@@ -57,3 +57,5 @@ typings/
# dotenv environment variables file
.env
.cache/
public
+14
View File
@@ -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
View File
@@ -0,0 +1,3 @@
import React from "react"
export default () => <div>Hello world!</div>