MoreTab.js
488 Bytes
import React, { Component } from 'react';
import { View, Text, StyleSheet } from 'react-native';
export default class AddTab extends Component {
static navigationOptions = {
headerShown: false
}
render() {
return (
<View style={style.container}>
</View>
);
}
}
const style = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
}
});