blob: 1f3051d514452f593a035342f042cbd9d56257bd (
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
|