From 6107f5d9bd6326ceb62336952174a9cbf1f775da Mon Sep 17 00:00:00 2001 From: Kyle Mathews Date: Wed, 26 Jul 2017 13:54:03 -0600 Subject: [PATCH] Update .gitignore + add gatsby & gatsby-link + hello world page --- .gitignore | 2 ++ package.json | 14 ++++++++++++++ src/pages/index.js | 3 +++ 3 files changed, 19 insertions(+) create mode 100644 package.json create mode 100644 src/pages/index.js diff --git a/.gitignore b/.gitignore index 00cbbdf..88ddc21 100644 --- a/.gitignore +++ b/.gitignore @@ -57,3 +57,5 @@ typings/ # dotenv environment variables file .env +.cache/ +public diff --git a/package.json b/package.json new file mode 100644 index 0000000..b7df925 --- /dev/null +++ b/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" + } +} diff --git a/src/pages/index.js b/src/pages/index.js new file mode 100644 index 0000000..92b25c1 --- /dev/null +++ b/src/pages/index.js @@ -0,0 +1,3 @@ +import React from "react" + +export default () =>
Hello world!