Guest User

Untitled

a guest
Apr 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. 'use strict';
  2. import React, {Component} from 'react';
  3. const styles = require('./Styles/styles.js')
  4. import ReactNative from 'react-native';
  5. const { StyleSheet, Text, View} = ReactNative;
  6.  
  7. class StatusBar extends Component {
  8. render() {
  9. return (
  10. <View>
  11. <View style={styles.statusbar}/>
  12. <View style={styles.navbar}>
  13. <Text style={styles.navbarTitle}>{this.props.title}</Text>
  14. </View>
  15. </View>
  16. );
  17. }
  18. }
  19.  
  20. module.exports = StatusBar;
Add Comment
Please, Sign In to add comment