Skip to content

Instantly share code, notes, and snippets.

@seyna
Created April 13, 2018 15:51
Show Gist options
  • Save seyna/733f76916197bda888ec7de20170a82c to your computer and use it in GitHub Desktop.
Save seyna/733f76916197bda888ec7de20170a82c to your computer and use it in GitHub Desktop.
for firebase practice
'use strict';
import React, {Component} from 'react';
const styles = require('./Styles/styles.js')
import ReactNative from 'react-native';
const { StyleSheet, Text, View} = ReactNative;
class StatusBar extends Component {
render() {
return (
<View>
<View style={styles.statusbar}/>
<View style={styles.navbar}>
<Text style={styles.navbarTitle}>{this.props.title}</Text>
</View>
</View>
);
}
}
module.exports = StatusBar;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment