mirror of
https://github.com/fullstack-cash/explorer.fullstack.cash.git
synced 2026-09-21 16:52:05 -07:00
feat(starter) - basic functionality for the wallet starter
This commit is contained in:
+1
-1
@@ -6,5 +6,5 @@
|
|||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
/* Your site config here */
|
/* Your site config here */
|
||||||
plugins: [],
|
plugins: ["gatsby-ipfs-web-wallet"],
|
||||||
}
|
}
|
||||||
|
|||||||
Generated
+933
-2190
File diff suppressed because it is too large
Load Diff
+20
-3
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "gatsby-starter-hello-world",
|
"name": "bch-wallet-starter",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "A simplified bare-bones starter for Gatsby",
|
"description": "A simplified bare-bones starter for Gatsby",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
@@ -14,9 +14,26 @@
|
|||||||
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
|
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"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": "^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": {
|
"devDependencies": {
|
||||||
"prettier": "2.0.5"
|
"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
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
import React from "react"
|
|
||||||
|
|
||||||
export default function Home() {
|
|
||||||
return <div>Hello world!</div>
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user