class PatientList extends React.Component { constructor(props) { super(props); this.state = {} } componentWillMount() { this.getPatientList(); } getPatientList() { $.ajax({ } render() { return
{this.currentDateString(this.props.format)}
} } ReactDOM.render(, document.getElementById('PatientList'));