Je veux appeler une fonction dans un fichier html intégré. J'ai essayé ce qui suit mais la fonction n'est pas appelée. Serait-ce la façon incorrecte d'appeler une fonction dans une méthode de rendu ?
import React, { Component, PropTypes } from 'react';
export default class PatientTable extends Component {
constructor(props) {
super(props);
this.state = {
checking:false
};
this.renderIcon = this.renderIcon.bind(this);
}
renderIcon(){
console.log("came here")
return(
<div>Function called</div>
)
}
render() {
return (
<div className="patient-container">
{this.renderIcon}
</div>
);
}
}