You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Patientlist.js 588B

123456789101112131415161718192021222324252627
  1. class PatientList extends React.Component {
  2. constructor(props) {
  3. super(props);
  4. this.state = {}
  5. }
  6. componentWillMount() {
  7. this.getPatientList();
  8. }
  9. getPatientList() {
  10. $.ajax({
  11. }
  12. render() {
  13. return <div className="container">
  14. <div className="cal-xs-12">
  15. <span className="pull-right">
  16. {this.currentDateString(this.props.format)}
  17. </span>
  18. </div>
  19. </div>
  20. }
  21. }
  22. ReactDOM.render(<PatientList />, document.getElementById('PatientList'));