blob: 805538b3f3ba94635611346b621189b976f5a5ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import React from "react";
import FontAwesome from "react-fontawesome";
const NameComponent = ({ name, onEdit }) => (
<h2>
{name}
<button className="btn btn-outline-secondary float-right" onClick={onEdit}>
<FontAwesome name="pencil" />
</button>
</h2>
);
export default NameComponent;
|