Adding Gatsby

This commit is contained in:
Jeff Avallone 2019-01-01 20:27:53 -05:00
parent 02f33c6ae2
commit 10bd2c7e36
4 changed files with 9891 additions and 0 deletions

4
.gitignore vendored
View File

@ -17,3 +17,7 @@ node_modules/
# Yarn Integrity file
.yarn-integrity
# Gatsby build files
.cache/
public/

View File

@ -10,5 +10,13 @@
"license": "MIT",
"private": true,
"scripts": {
"start": "gatsby develop",
"build": "gatsby build"
},
"dependencies": {
"gatsby": "^2.0.81",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0"
}
}

5
src/pages/index.js Normal file
View File

@ -0,0 +1,5 @@
import React from 'react';
const IndexPage = () => <div>Hello world</div>;
export default IndexPage;

9874
yarn.lock Normal file

File diff suppressed because it is too large Load Diff