27 lines
664 B
JavaScript
27 lines
664 B
JavaScript
|
import { connect } from "react-redux";
|
||
|
import {
|
||
|
createShapeShift,
|
||
|
shapeShiftInit,
|
||
|
getCoinStats,
|
||
|
clearShapeShift,
|
||
|
getActiveShift,
|
||
|
} from "redux/actions/shape_shift";
|
||
|
import { doShowSnackBar } from "redux/actions/app";
|
||
|
import { selectReceiveAddress } from "redux/selectors/wallet";
|
||
|
import { selectShapeShift } from "redux/selectors/shape_shift";
|
||
|
import ShapeShift from "./view";
|
||
|
|
||
|
const select = state => ({
|
||
|
receiveAddress: selectReceiveAddress(state),
|
||
|
shapeShift: selectShapeShift(state),
|
||
|
});
|
||
|
|
||
|
export default connect(select, {
|
||
|
shapeShiftInit,
|
||
|
getCoinStats,
|
||
|
createShapeShift,
|
||
|
clearShapeShift,
|
||
|
getActiveShift,
|
||
|
doShowSnackBar,
|
||
|
})(ShapeShift);
|