File size: 423 Bytes
51545af | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | """
Visualization components for the embed_explore application.
This module re-exports from shared for backwards compatibility.
"""
# Re-export scatter plot from shared module
from shared.components.visualization import render_scatter_plot
# Re-export image preview from local module
from apps.embed_explore.components.image_preview import render_image_preview
__all__ = ['render_scatter_plot', 'render_image_preview']
|