import { ClickableCustom, TextCustom } from "@/components"; import Spacing from "@/components/_ShareComponent/Spacing"; import { router } from "expo-router"; import { View } from "react-native"; import Icon from "react-native-vector-icons/FontAwesome"; import { stylesHome } from "./homeViewStyle"; export default function Home_BottomFeatureSection({ listData, }: { listData: any[] | null; }) { return ( <> router.push("/job")}> Job Vacancy {/* Vacancy Item 1 */} {listData?.map((item: any, index: number) => ( {item.title} {item.deskripsi} ))} ); }