import React from 'react'; import { ScheduleItem } from '../types'; interface LiveOrdersTableProps { orders: ScheduleItem[]; } export const LiveOrdersTable: React.FC = ({ orders }) => { return (

Heutige Live-Aufträge (Dispatching)

{orders.map((order) => ( ))}
Kunde Monteur Status
{order.customerName} {order.technicianName} {order.status === 'Geplant' ? `Geplant (${order.startTime})` : order.status}
); };