This repository has been archived on 2022-12-12. You can view files and clone it, but cannot push or open issues or pull requests.
|
import { createBottomTabNavigator } from "@react-navigation/bottom-tabs";
|
|
import Navigator from "./navigation/Navigator";
|
|
const Tab = createBottomTabNavigator();
|
|
|
|
export default function App() {
|
|
return <Navigator />;
|
|
}
|