Spaces:
Build error
Build error
| import streamlit as st | |
| st.title("π My First Streamlit App on Hugging Face") | |
| st.write("This is a test app running inside Docker on Spaces!") | |
| name = st.text_input("Enter your name:") | |
| if name: | |
| st.success(f"Hello, {name}! π") | |
| st.bar_chart({"data": [1, 5, 2, 6, 3, 7]}) | |