Add application file
Browse files
app.py
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
import streamlit as st
|
2 |
|
3 |
-
|
4 |
-
st.
|
|
|
|
1 |
import streamlit as st
|
2 |
|
3 |
+
st.title("Hello, Streamlit!")
|
4 |
+
name = st.text_input("What's your name?")
|
5 |
+
st.write(f"Hello, {name}!")
|