feat: add reference data loading and filter state callbacks (Task 3.1)

This commit is contained in:
Andrew Charlwood
2026-02-06 13:29:30 +00:00
parent d896c63dc5
commit eda35c7168
4 changed files with 93 additions and 3 deletions
+5
View File
@@ -27,6 +27,7 @@ app.layout = dmc.MantineProvider(
}),
dcc.Store(id="chart-data", storage_type="memory"),
dcc.Store(id="reference-data", storage_type="session"),
dcc.Location(id="url", refresh=False),
# Page structure
make_header(),
@@ -43,4 +44,8 @@ app.layout = dmc.MantineProvider(
],
)
from dash_app.callbacks import register_callbacks
register_callbacks(app)
server = app.server