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