Spaces:
Sleeping
Sleeping
| 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}") | |