Placeholder.js 704 Bytes
'use strict';

import React from 'react';
import ReactNative from 'react-native';


const {
    Component,
} = React;


const {
    View,
    Text,
    StyleSheet,
    Dimensions,
} = ReactNative;


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',
        borderBottomWidth:0.5,
        borderColor:'#e5e5e5',
    },
});