feat(starter) - basic functionality for the wallet starter

This commit is contained in:
Andre Cabrera
2020-07-06 12:06:05 -03:00
parent 2938d41f85
commit 634f0620c6
6 changed files with 7350 additions and 3574 deletions
+1 -1
View File
@@ -6,5 +6,5 @@
module.exports = {
/* Your site config here */
plugins: [],
plugins: ["gatsby-ipfs-web-wallet"],
}
+934 -2191
View File
File diff suppressed because it is too large Load Diff
+20 -3
View File
@@ -1,5 +1,5 @@
{
"name": "gatsby-starter-hello-world",
"name": "bch-wallet-starter",
"private": true,
"description": "A simplified bare-bones starter for Gatsby",
"version": "0.1.0",
@@ -14,9 +14,26 @@
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"dependencies": {
"gatsby": "^2.23.10",
"adminlte-2-react": "^0.1.27",
"gatsby-ipfs-web-wallet": "^0.1.0",
"gatsby": "^2.23.7",
"gatsby-image": "^2.4.12",
"gatsby-plugin-ipfs": "^2.0.2",
"gatsby-plugin-manifest": "^2.4.9",
"gatsby-plugin-offline": "^3.2.7",
"gatsby-plugin-react-helmet": "^3.3.2",
"gatsby-plugin-sharp": "^2.6.17",
"gatsby-source-filesystem": "^2.3.8",
"gatsby-transformer-sharp": "2.5.3",
"graphql": "14.6.0",
"minimal-slp-wallet": "1.3.4",
"react": "^16.12.0",
"react-dom": "^16.12.0"
"react-dom": "^16.12.0",
"react-helmet": "^6.0.0",
"react-jdenticon": "0.0.8",
"react-qr-reader": "^2.2.1",
"react-redux": "^7.2.0",
"redux": "^4.0.5"
},
"devDependencies": {
"prettier": "2.0.5"
@@ -0,0 +1,14 @@
import React from "react"
import { Sidebar } from "adminlte-2-react"
const { Item } = Sidebar
const MenuComponents = [
{
key: "New Component",
component: <div>Test!</div>,
menuItem: <Item icon="fas-cog" key="New Component" text="New Component" />,
},
]
export default MenuComponents
-5
View File
@@ -1,5 +0,0 @@
import React from "react"
export default function Home() {
return <div>Hello world!</div>
}
+6381 -1374
View File
File diff suppressed because it is too large Load Diff