23 lines
554 B
TypeScript
23 lines
554 B
TypeScript
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
import HomeView from "@/components/Home/HomeView";
|
|
import { MainColor } from "@/constants/color-palet";
|
|
import { Ionicons } from "@expo/vector-icons";
|
|
import { Stack, useNavigation, useRouter } from "expo-router";
|
|
import { useEffect } from "react";
|
|
|
|
export default function Tabs() {
|
|
// const router = useRouter();
|
|
// const navigation = useNavigation();
|
|
// useEffect(() => {
|
|
// navigation.setOptions({
|
|
|
|
// });
|
|
// }, [navigation]);
|
|
|
|
return (
|
|
<>
|
|
<HomeView />
|
|
</>
|
|
);
|
|
}
|