blob: 20cdad1e6d830370268a63abc9e352d02d3e1613 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import React from "react";
const UnitComponent = ({unit, onDelete}) => (
<li className="d-flex list-group-item justify-content-between align-items-center">
{unit.manufacturer + " " + unit.family + " " + unit.model + " " + unit.generation}
<span className="btn btn-outline-danger" onClick={onDelete}>Delete</span>
</li>
);
export default UnitComponent;
|