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
/
lib
/
docs
/
src
/
store
/
store.js
13 lines
(10 loc)
•
143 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict'
;
// Shared stores
const
Store
= {
uxui
: {
loading
:
false
,
navbar
:
true
,
footer
:
true
} };
export
default
Store
;