Dwinzo_dev/app/src/modules/simulation/vehicle/instances/vehicleInstances.tsx

19 lines
332 B
TypeScript
Raw Normal View History

import React from 'react'
import VehicleInstance from './instance/vehicleInstance'
2025-04-23 03:43:33 +00:00
function VehicleInstances({ vehicles }: any) {
return (
<>
2025-04-23 03:43:33 +00:00
{vehicles.map((val: any) =>
<VehicleInstance agvDetails={val} />
)
}
</>
)
}
export default VehicleInstances