adt commited on
Commit
39c67b8
·
1 Parent(s): 668bd6c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
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()