Spaces:
Sleeping
Sleeping
File size: 440 Bytes
812d971 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
"""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",
]
|