Spaces:
Build error
Build error
File size: 278 Bytes
2b594c2 a3c21a5 2b594c2 a3c21a5 2b594c2 a3c21a5 | 1 2 3 4 5 6 7 8 9 10 11 | 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]})
|