import React from 'react' class InfoDialog extends React.Component { constructor(props) { super(props) this.state = { openInfoDialog: false, } } render() { return (

Nombre

{this.props.info.name}

Apellido(s)

{this.props.info.last_name}

Identificación

{this.props.info.dni}

Teléfono

{this.props.info.phone}

Correo Electrónico

{this.props.info.email}

) } }