Commit
·
8a45f7a
1
Parent(s):
beb8337
chore: Test main app
Browse files- compose.main.yml → compose.yml +0 -0
- src/streamlit_app.py +2 -2
compose.main.yml → compose.yml
RENAMED
File without changes
|
src/streamlit_app.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
import streamlit as st
|
2 |
|
3 |
st.title("Hello")
|
4 |
-
name = st.text_input("
|
5 |
if st.button("Submit"):
|
6 |
-
st.text(f"Hello {name}")
|
|
|
1 |
import streamlit as st
|
2 |
|
3 |
st.title("Hello")
|
4 |
+
name = st.text_input("Your name:")
|
5 |
if st.button("Submit"):
|
6 |
+
st.text(f"Hello {name}, nice to meet you!")
|