AssociatorGift.js 813 Bytes
'use strict'

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

import {Map} from 'immutable';
import ReceiveGiftAlert from './ReceiveGiftAlert';

export default class AssociatorGift extends Component {
    constructor(props) {
        super(props);
    }

    render() {
        let {
            showGiftAlert,
        } = this.props;

        return (
            <View style={styles.container}>
                <ReceiveGiftAlert showGiftAlert={showGiftAlert} hiddenGiftAlert={this.props.hiddenGiftAlert}/>
            </View>
        );
    }
};

let {width, height} = Dimensions.get('window');
let styles = StyleSheet.create({
    container: {
        flex: 1,
    },
});