File size: 149 Bytes
29f6ccc
 
4af5fb3
8a45f7a
4af5fb3
8a45f7a
1
2
3
4
5
6
7
import streamlit as st

st.title("Hello")
name = st.text_input("Your name:")
if st.button("Submit"):
    st.text(f"Hello {name}, nice to meet you!")