sizzlebop's picture
Upload 35 files
94ecb74 verified
raw
history blame contribute delete
423 Bytes
"""
🖥️ User Interface Components
Gradio interface and custom UI components.
"""
from .gradio_app import create_coursecrafter_interface
from .components import CoursePreview, FlashcardViewer, ProgressTracker
from .styling import get_custom_css, get_theme_colors, get_component_styles
__all__ = [
"create_coursecrafter_interface",
"CoursePreview",
"FlashcardViewer",
"ProgressTracker"
]