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.
21 lines
847 B
21 lines
847 B
import React from "react";
|
|
import CityList from "../CityList";
|
|
/*
|
|
export default function Navigation() {
|
|
const BottomTabNavigator = createBottomTabNavigator();
|
|
return (
|
|
<NavigationContainer>
|
|
<BottomTabNavigator.Navigator initialRouteName="Home">
|
|
<BottomTabNavigator.Screen name="Home" component={CityList}
|
|
options={{
|
|
title: 'Home',
|
|
}}/>
|
|
<BottomTabNavigator.Screen name="Settings" component={CityList}
|
|
options={{
|
|
title: 'Settings',
|
|
}}/>
|
|
</BottomTabNavigator.Navigator>
|
|
</NavigationContainer>
|
|
)
|
|
}
|
|
*/ |