feat: remove Reflex, archive old app, update docs for Dash migration (Task 5.4)

- Remove reflex dependency from pyproject.toml
- Move pathways_app/ and rxconfig.py to archive/
- Update CLAUDE.md: Dash app structure, callback chain, run command
- All completion criteria validated (10/10 pass)
This commit is contained in:
Andrew Charlwood
2026-02-06 14:35:43 +00:00
parent 7a4f9ce567
commit fe8642dfaf
11 changed files with 121 additions and 1080 deletions
@@ -0,0 +1,17 @@
"""
UI components for the Patient Pathway Analysis Reflex application.
This module exports reusable layout and navigation components.
"""
from .layout import sidebar, navbar, content_area, main_layout
from .navigation import nav_item, nav_section
__all__ = [
"sidebar",
"navbar",
"content_area",
"main_layout",
"nav_item",
"nav_section",
]