• This project
    • Loading...
  • Sign in

2020-1-capstone-design2 / 2014104086

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • 2014104086
  • source_code
  • A-BLE
  • components
  • TopTabNavigator
  • MoreTab.js
  • 김승훈's avatar
    updateAll · f1091cad
    f1091cad
    김승훈 authored 2020-06-17 13:33:57 +0900
MoreTab.js 488 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
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',
    }
});