add Home and update config
This commit is contained in:
parent
0937a83f93
commit
fa1f796695
|
@ -0,0 +1,13 @@
|
||||||
|
import React from 'react';
|
||||||
|
import {
|
||||||
|
useDispatch,
|
||||||
|
} from 'react-redux';
|
||||||
|
|
||||||
|
export default function() {
|
||||||
|
const dispatch = useDispatch();
|
||||||
|
|
||||||
|
return <>
|
||||||
|
<p>
|
||||||
|
</p>
|
||||||
|
</>;
|
||||||
|
}
|
|
@ -14,7 +14,6 @@ export interface RootState {
|
||||||
bucket: BucketState,
|
bucket: BucketState,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
export default function(history) {
|
export default function(history) {
|
||||||
return combineReducers({
|
return combineReducers({
|
||||||
web3: web3Reducer,
|
web3: web3Reducer,
|
||||||
|
|
|
@ -30,9 +30,12 @@ module.exports = {
|
||||||
// filteredFields: [],
|
// filteredFields: [],
|
||||||
|
|
||||||
deploy: {
|
deploy: {
|
||||||
GiftBucket: {
|
TestToken: {
|
||||||
deploy: false,
|
args: ["TEST", 18],
|
||||||
}
|
},
|
||||||
|
GiftBucketFactory: {
|
||||||
|
params: [],
|
||||||
|
},
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue