hysts HF staff commited on
Commit
befead4
1 Parent(s): 7b6c7da
Files changed (1) hide show
  1. app.py +8 -2
app.py CHANGED
@@ -2,8 +2,14 @@
2
 
3
  import gradio as gr
4
 
5
- with gr.Blocks() as demo:
6
- pass
 
 
 
 
 
 
7
 
8
  if __name__ == "__main__":
9
  demo.queue().launch()
 
2
 
3
  import gradio as gr
4
 
5
+ css = """
6
+ h1 {
7
+ text-align: center;
8
+ }
9
+ """
10
+
11
+ with gr.Blocks(css=css) as demo:
12
+ gr.Markdown("# title")
13
 
14
  if __name__ == "__main__":
15
  demo.queue().launch()