blob: 5fb0dc55ecaf7ad02a5f066dc7c71b73ce1dac33 (
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
|