File size: 423 Bytes
94ecb74
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""

🖥️ 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"
]