blob: 41522e364f0d7ab1aecc37b05726ae5a45a4e375 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import React from "react";
import EmptySlotContainer from "../../../../containers/sidebars/topology/rack/EmptySlotContainer";
import MachineContainer from "../../../../containers/sidebars/topology/rack/MachineContainer";
import "./MachineListComponent.css";
const MachineListComponent = ({machineIds}) => {
return (
<ul className="list-group machine-list">
{machineIds.map((machineId, index) => {
if (machineId === null) {
return <EmptySlotContainer key={index} position={index + 1}/>;
} else {
return <MachineContainer key={index} position={index + 1} machineId={machineId}/>;
}
})}
</ul>
);
};
export default MachineListComponent;
|