Vasily.onl cdee9f04d6 Remove main application file app.py and update dependencies for modular dashboard architecture
- Deleted `app.py`, consolidating the main application logic into a modular structure for improved maintainability.
- Added `dash-mantine-components` dependency to enhance UI component capabilities.
- Updated `pyproject.toml` and `uv.lock` to reflect the new dependency.
- Adjusted imports in `components/__init__.py` and `chart_controls.py` to align with the new modular design.
- Cleaned up unused parameter controls in the market data layout to streamline the user interface.
2025-06-04 15:30:50 +08:00

11 lines
234 B
Python

"""
Reusable UI components for the dashboard.
"""
from .chart_controls import create_chart_config_panel
from .indicator_modal import create_indicator_modal
__all__ = [
'create_chart_config_panel',
'create_indicator_modal'
]