wenjiao commited on
Commit
a7c2292
·
1 Parent(s): 9fa118a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -13,9 +13,9 @@ def update_language(value):
13
 
14
  with gr.Blocks() as demo:
15
  with gr.Box() as zh:
16
- gr.markdown(CN_md)
17
  with gr.Box() as eng:
18
- gr.markdown(md)
19
 
20
  dt = gr.Textbox(label="Current time")
21
  dt.change(update_language, input=dt, output=[eng, zh])
 
13
 
14
  with gr.Blocks() as demo:
15
  with gr.Box() as zh:
16
+ gr.Markdown(CN_md)
17
  with gr.Box() as eng:
18
+ gr.Markdown(md)
19
 
20
  dt = gr.Textbox(label="Current time")
21
  dt.change(update_language, input=dt, output=[eng, zh])