feat(patient): enhance patient detail view with accordion and timezone support

- Add date-fns-tz for timezone-aware date formatting
- Refactor patient detail view to use accordion components
- Improve date display formatting with locale support
- Update navigation handling for edit and back actions
- Extend ClickType enum to include 'edit' action
This commit is contained in:
Khafid Prayoga
2025-12-05 19:24:40 +07:00
parent d848e5bd07
commit 41985ea89f
5 changed files with 241 additions and 140 deletions
+1 -1
View File
@@ -1 +1 @@
export type ClickType = 'back' | 'draft' | 'submit'
export type ClickType = 'back' | 'draft' | 'submit' | 'edit'