import React from "react"; const UnitComponent = ({unit, onDelete, inSimulation}) => (
  • {unit.manufacturer + " " + unit.family + " " + unit.model + " " + unit.generation} {inSimulation ? undefined : Delete }
  • ); export default UnitComponent;