Spaces:
Sleeping
Sleeping
| """Individual UI components used by the Gradio interface.""" | |
| from .comparison_table import show_comparison_table | |
| from .crypto_dashboard import build_crypto_dashboard | |
| from .visual_comparison import ( | |
| build_comparison_chart, | |
| build_price_chart, | |
| build_volatility_chart, | |
| ) | |
| __all__ = [ | |
| "show_comparison_table", | |
| "build_crypto_dashboard", | |
| "build_comparison_chart", | |
| "build_price_chart", | |
| "build_volatility_chart", | |
| ] | |