blob: 03b44aa6713b7743275d0c99bedc5c59fde337bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import React from 'react'
const EmptySlotComponent = ({ position, onAdd }) => (
<li className="list-group-item d-flex justify-content-between align-items-center">
<span className="badge badge-default badge-info mr-1 disabled">
{position}
</span>
<button className="btn btn-outline-primary" onClick={onAdd}>
<span className="fa fa-plus mr-2"/>
Add machine
</button>
</li>
)
export default EmptySlotComponent
|