summaryrefslogtreecommitdiff
path: root/frontend/src/components/app/sidebars/topology/machine/MachineNameComponent.js
blob: 70be696896c7abb05a45af8e07ae911e11520c50 (plain)
1
2
3
4
5
6
7
import React from 'react'

const MachineNameComponent = ({ position }) => (
    <h2>Machine at slot {position}</h2>
)

export default MachineNameComponent