Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -4,6 +4,6 @@ def greet(name):
|
|
4 |
return "Hello " + name
|
5 |
|
6 |
# We instantiate the Textbox class
|
7 |
-
textbox = gr.
|
8 |
|
9 |
gr.Interface(fn=greet, inputs=textbox, outputs="text", css=".footer{display:none !important}").launch()
|
|
|
4 |
return "Hello " + name
|
5 |
|
6 |
# We instantiate the Textbox class
|
7 |
+
textbox = gr.Textbox(label="Type your name here:", placeholder="John Doe", lines=2)
|
8 |
|
9 |
gr.Interface(fn=greet, inputs=textbox, outputs="text", css=".footer{display:none !important}").launch()
|