codeAtlas / src /ui /__init__.py
aghilsabu's picture
feat: add Gradio web UI with interactive diagram explorer
21c534a
raw
history blame contribute delete
319 Bytes
"""
CodeAtlas UI Module
Gradio-based user interface components.
"""
from .app import create_app
from .components import make_nav_bar, make_loading_html, make_stats_bar
from .styles import CUSTOM_CSS
__all__ = [
"create_app",
"make_nav_bar",
"make_loading_html",
"make_stats_bar",
"CUSTOM_CSS",
]