Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clinic: adds API endpoints and UI to list, search and view patients #3

Open
wants to merge 14 commits into
base: main
Choose a base branch
from

Commits on Oct 26, 2023

  1. Configuration menu
    Copy the full SHA
    17eef5f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ade32b4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3f78bdd View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    110044c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    688fc17 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e5c84da View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    e05fd55 View commit details
    Browse the repository at this point in the history
  8. clinic: use r/props for all components

    Because:
    1. React components accept an OPTIONAL map of props as their first arguement.
    2. If the first arg is not a map, it is considered a child.
    3. Therefore, map destructuring the first arg won't work.
    4. We can still use non-map props, e.g. `[component prop-1 prop-2 ...]`, but
       this isn't idea for components that want to accept children. Therefore,
       sticking to the optional-map-style props is consistent way to declare
       components.
    ashutoshgngwr committed Oct 26, 2023
    Configuration menu
    Copy the full SHA
    b1f1f6a View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    be45aa8 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    5b5121c View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2023

  1. Configuration menu
    Copy the full SHA
    15e77ad View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5063ef1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6b711ba View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5d37c37 View commit details
    Browse the repository at this point in the history