UNPKG
chainode
Version:
latest (1.0.0)
1.0.0
0.0.1
A private blockchain network based on node.js
github.com/davidemiceli/chainode
davidemiceli/chainode
chainode
/
web-console
/
frontend
/
src
/
store
/
store.js
15 lines
(12 loc)
•
171 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
'use strict'
;
// Shared stores
const
Store
= {
uxui
: {
loading
:
false
,
navbar
:
true
,
footer
:
true
},
system
: {},
blocks
: [] };
export
default
Store
;