aungthu / app.py
Kenqt's picture
Create app.py
796661f verified
raw
history blame contribute delete
111 Bytes
import streamlit as st
st.title("Welcome!")
name = st.text_input("leeee")
if name:
st.write("Hello", name)