Emma Scharfmann
add template for challenge
e1ce262
Raw
History Blame Contribute Delete
238 Bytes
"""About tab – static challenge description."""
import gradio as gr
from config import CHALLENGE_DESCRIPTION, CHALLENGE_NAME
def build_about_tab() -> None:
gr.Markdown(f"# {CHALLENGE_NAME}")
gr.Markdown(CHALLENGE_DESCRIPTION)