import { ButtonCustom, Divider, Grid, SearchInput, StackCustom, TextCustom, ViewWrapper } from "@/components"; import AdminComp_BoxTitle from "@/components/_ShareComponent/Admin/BoxTitlePage"; import { MainColor } from "@/constants/color-palet"; import { ICON_SIZE_MEDIUM } from "@/constants/constans-value"; import { Ionicons } from "@expo/vector-icons"; export default function AdminUserAccess() { const rightComponent = () => { return ( <> ); }; return ( <> } > Aksi Username Nomor {Array.from({ length: 10 }).map((_, index) => ( } onPress={() => {}} backgroundColor={ index % 2 === 0 ? MainColor.green : MainColor.red } > {index % 2 === 0 ? "Berikan Akses" : "Hapus Akses"} Useraname 08123456789 ))} ); }