Spaces:
Sleeping
Sleeping
saurabh2086 commited on
Commit ·
0563274
1
Parent(s): 02a9744
change the name of the button
Browse files
app.py
CHANGED
|
@@ -23,7 +23,7 @@ def generate_random_hindi_text():
|
|
| 23 |
|
| 24 |
with gr.Blocks() as demo:
|
| 25 |
textbox = gr.HTML(f"<div style='font-size: 300px; text-align: center;'><b>{generate_random_hindi_text()}</b></div>")
|
| 26 |
-
button = gr.Button()
|
| 27 |
button.click(fn=generate_random_hindi_text,
|
| 28 |
inputs=[],
|
| 29 |
outputs=[textbox])
|
|
|
|
| 23 |
|
| 24 |
with gr.Blocks() as demo:
|
| 25 |
textbox = gr.HTML(f"<div style='font-size: 300px; text-align: center;'><b>{generate_random_hindi_text()}</b></div>")
|
| 26 |
+
button = gr.Button("Generate a Hindi Letter")
|
| 27 |
button.click(fn=generate_random_hindi_text,
|
| 28 |
inputs=[],
|
| 29 |
outputs=[textbox])
|