1 2 3 4 5 6 7
import React from "react"; const MachineNameComponent = ({ position }) => ( <h2>Machine at slot {position}</h2> ); export default MachineNameComponent;