sergiolucero commited on
Commit
26cc76d
1 Parent(s): 9679b96

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -35,8 +35,10 @@ with gr.Blocks() as demo:
35
  label="PACIENTE", value=pacientes[0], interactive=True)
36
  with gr.Column(scale=4):
37
  with gr.Row():
38
- left_text = gr.Markdown()
39
- right_text = gr.Markdown()
 
 
40
 
41
  radio.change(display_text, inputs=radio, outputs=[left_text, right_text])
42
 
 
35
  label="PACIENTE", value=pacientes[0], interactive=True)
36
  with gr.Column(scale=4):
37
  with gr.Row():
38
+ with gr.Accordion('Resumen Historial'): # use radio?
39
+ left_text = gr.Markdown()
40
+ with gr.Accordion('Historial'):
41
+ right_text = gr.Markdown()
42
 
43
  radio.change(display_text, inputs=radio, outputs=[left_text, right_text])
44