TIMBOVILL commited on
Commit
6a2441f
1 Parent(s): ffd2848

Update tabs/info/info.py

Browse files
Files changed (1) hide show
  1. tabs/info/info.py +14 -1
tabs/info/info.py CHANGED
@@ -1 +1,14 @@
1
- test
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ from assets.i18n.i18n import I18nAuto
4
+
5
+ i18n = I18nAuto()
6
+
7
+
8
+ def extra_tab():
9
+ gr.Markdown(
10
+ value=i18n(
11
+ "Test"
12
+ )
13
+ )
14
+