import { createBottomTabNavigator } from "@react-navigation/bottom-tabs"; import { NavigationContainer } from "@react-navigation/native"; import React from "react"; import CityList from "../screens/CityList"; export default function Navigation() { const BottomTabNavigator = createBottomTabNavigator(); return ( ) }