Rev 6588 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
import React from 'react'
const Overview = ({ overview, overviewUrl }) => {
return (
<div class="user-profile-extended-ov">
<h3>
Visión general
<button
className="btn btn-extended-edit">
<i class="fa fa-pencil" />
</button>
</h3>
<span id="overview-description">{overview}</span>
</div>
)
}
export default Overview