import React from 'react'; import { Button, Row, Col, Card, Badge, Typography, Space, Divider } from 'antd'; import { SendOutlined, MobileOutlined, CheckCircleFilled, ArrowLeftOutlined } from '@ant-design/icons'; const { Text } = Typography; // Dummy data for user history const userHistoryData = [ { id: 1, name: 'John Doe', phone: '081234567890', status: 'Delivered', timestamp: '04-11-2025 11:40 WIB' }, { id: 2, name: 'Jane Smith', phone: '087654321098', status: 'Delivered', timestamp: '04-11-2025 11:41 WIB' }, { id: 3, name: 'Peter Jones', phone: '082345678901', status: 'Delivered', timestamp: '04-11-2025 11:42 WIB' }, ]; const UserHistory = ({ notification, onBack }) => { return ( ))} ); }; export default UserHistory;