Placeholder.js 619 Bytes
'use strict';

import React from 'react-native';


let {
    Component,
    View,
    Text,
    StyleSheet,
    Dimensions
} = React;


export default class Placeholder extends Component {

    static propTypes = {
        containerStyle: View.propTypes.style,
    };

	render() {

        return (
            <View style={[styles.container, this.props.containerStyle]} />
        );
    }
}

let {width, height} = Dimensions.get('window');

let styles = StyleSheet.create({
    container: {
        width,
        height: 15,
        backgroundColor: 'transparent',
        // backgroundColor: '#F0F0F0',
    },

});