mirror of
https://github.com/fullstack-cash/explorer.fullstack.cash.git
synced 2026-09-22 17:22:05 -07:00
Update .gitignore + add gatsby & gatsby-link + hello world page
This commit is contained in:
@@ -57,3 +57,5 @@ typings/
|
||||
# dotenv environment variables file
|
||||
.env
|
||||
|
||||
.cache/
|
||||
public
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
import React from "react"
|
||||
|
||||
export default () => <div>Hello world!</div>
|
||||
Reference in New Issue
Block a user