Spaces:
Sleeping
Sleeping
File size: 181 Bytes
bb9be8b | 1 2 3 4 5 6 7 8 | 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}!")
|