import { ScrollView, Text, View } from "react-native"; import { UserLoginLog } from "@/store/api/usersApi"; import { formatDate, formatTime } from "@/utils/dateUtils"; interface MobileLogsTableProps { logs: UserLoginLog[]; } export const MobileLogsTable = ({ logs }: MobileLogsTableProps) => { return ( {logs.map((log) => ( {log.name}{" "} ({log.email}) Time: {formatDate(log.lastLoginAt)} {formatTime(log.lastLoginAt)} Login activity: {log.activity} ))} ); };