nateraw commited on
Commit
933f15b
·
1 Parent(s): 6dea00f

Upload app.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ st.title("Hello World")
4
+
5
+ text = st.text_input("What's your name")
6
+
7
+ if text.strip() != "":
8
+ st.write(f"Hello, {text.strip()}!")