Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -36,7 +36,9 @@ dtypes = ["str" if c not in columns_to_click else "html" for c in dataframe.colu
|
|
36 |
# Gradio app setup
|
37 |
with gr.Blocks() as demo:
|
38 |
# Markdown and DataFrame components
|
39 |
-
|
|
|
|
|
40 |
|
41 |
# Launch the Gradio app
|
42 |
demo.launch()
|
|
|
36 |
# Gradio app setup
|
37 |
with gr.Blocks() as demo:
|
38 |
# Markdown and DataFrame components
|
39 |
+
gr.Markdown(title)
|
40 |
+
gr.Markdown(description)
|
41 |
+
gr.DataFrame(get_data, datatype=dtypes, every=60)
|
42 |
|
43 |
# Launch the Gradio app
|
44 |
demo.launch()
|