ss2code / app.py
keremsabirli's picture
initial commit
7422ac8
raw
history blame
274 Bytes
import streamlit as st
# Write a title and some text to the app:
st.title('My Hugging Face Space')
st.write('This is a simple Streamlit app in a Hugging Face Space!')
# Interactive widgets:
number = st.slider('Select a number', 0, 10, 5)
st.write('You selected:', number)