ahmedyoussef1's picture
Upload 2 files
3f6e8af verified
raw
history blame contribute delete
255 Bytes
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}")