check_again / app.py
Maham930's picture
Update app.py
bb9be8b verified
import streamlit as st
st.title("๐Ÿš€ Streamlit App (converted from Gradio)")
name = st.text_input("Enter your name:")
if st.button("Say Hello"):
st.success(f"Hello {name}!")