added static agv

This commit is contained in:
2025-04-23 09:13:33 +05:30
parent d161b70537
commit bcc908bfca
4 changed files with 66 additions and 12 deletions

View File

@@ -1,11 +1,16 @@
import React from 'react'
import VehicleInstance from './instance/vehicleInstance'
function VehicleInstances() {
function VehicleInstances({ vehicles }: any) {
return (
<>
<VehicleInstance />
{vehicles.map((val: any) =>
<VehicleInstance agvDetails={val} />
)
}
</>
)