import streamlit as st st.title("Hello, Hugging Face! 👋") st.write("This is a simple Streamlit app deployed on Hugging Face Spaces.") user_input = st.text_input("Enter something:") if user_input: st.write(f"You entered: {user_input}")