You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
ReactOrganizer/Main.js

21 lines
506 B

import React from 'react';
import {AppRegistry, Platform, Text,} from 'react-native';
import {Root} from "native-base";
import {StackNavigator} from "react-navigation";
import Drawer from './drawer/Drawer';
export const AppNavigator = StackNavigator({
Drawer: {screen: Drawer}
},
{
initialRouteName: "Drawer",
headerMode: "none",
});
AppRegistry.registerComponent('Organizer', () => AppNavigator);
export default () =>
<Root>
<AppNavigator/>
</Root>;