Spaces:
Build error
Build error
File size: 274 Bytes
7422ac8 |
1 2 3 4 5 6 7 8 9 10 |
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)
|