added table functionality

This commit is contained in:
2025-09-05 05:46:52 +02:00
parent d76db631fd
commit 1c41f666dc
2 changed files with 20 additions and 17 deletions

View File

@ -4,7 +4,7 @@ from src.components import (
bar_chart,
category_dropdown,
month_dropdown,
pie_chart,
data_table,
year_dropdown,
)
@ -24,6 +24,6 @@ def create_layout(app: Dash, data: pd.DataFrame) -> html.Div:
],
),
bar_chart.render(app, data),
pie_chart.render(app, data),
data_table.render(app, data),
],
)