InstallmentMyCardContainer.js 1.52 KB
'use strict'

import React, {Component} from 'react';
import {
    StyleSheet,
    Dimensions,
    Platform,
    View,
    NativeModules,
    InteractionManager,
    NativeAppEventEmitter,
    Text,
    ListView,
    TouchableOpacity,
} from 'react-native'

import {bindActionCreators} from 'redux';
import {connect} from 'react-redux';
import {Map} from 'immutable';
import * as cardListActions from '../reducers/bankCardList/cardListActions';
import ServerError from '../components/installment/ServerError';
import BankCardList from '../components/installment/BankCardList';


const actions = [
    cardListActions,
];
function mapStateToProps(state) {
    return {
        ...state
    };
}
function mapDispatchToProps(dispatch) {

    const creators = Map()
        .merge(...actions)
        .filter(value => typeof value === 'function')
        .toObject();

    return {
        actions: bindActionCreators(creators, dispatch),
        dispatch
    };
}
class InstallmentMyCardContainer extends Component {

    constructor(props) {
        super(props);
    }

    componentDidMount() {
        // this.props.actions.getBankCards();
    }

    render() {

        let cardList = ['65325165465321654','99999999999999'];

        return (
            <BankCardList
                style={styles.container}
                cardList={cardList}

            />
        );
    }
}
let styles = StyleSheet.create({
    container: {
        flex: 1,
    },


});

export default connect(mapStateToProps, mapDispatchToProps)(InstallmentMyCardContainer);