import React from 'react'; import { Box, Typography, Table, TableBody, TableCell, TableContainer, TableHead, TableRow, Paper, Button, Chip } from '@mui/material'; // import LocalShippingIcon from '@mui/icons-material/LocalShipping'; // import InventoryIcon from '@mui/icons-material/Inventory'; // import AssignmentIcon from '@mui/icons-material/Assignment'; const RecentActivity = () => { // Sample data const activities = [ { id: 1, order: 'Order #1234 completed', delivery: 'Delivery en route', inventory: 'Low stock on item #567' }, { id: 2, order: 'Order #1235 completed', delivery: 'Delivery delayed', inventory: 'Low stock on item #890' }, { id: 3, order: 'Order #1236 completed', delivery: 'Delivery arrived', inventory: 'Out of stock on item #123' } ]; return ( Recent Activity New Orders Delivery Updates Inventory Alerts Actions {activities.map((activity) => ( {activity.order} {activity.delivery} {activity.inventory} ))}
); }; export default RecentActivity;