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

st.title("Hello")
name = st.text_input("Enter your name")
if st.button("Submit"):
    st.text(f"Hello {name}")