Spaces:
Running
Running
File size: 267 Bytes
ba8ffed |
1 2 3 4 5 6 7 8 9 |
import streamlit as st
st.set_page_config(page_title="Streamlit Space Example")
st.title("Streamlit Demo")
st.write("This is an app running on Streamlit.")
user_input = st.text_input("Enter your name:", "World")
st.write(f"Hello, **{user_input}** from Streamlit!") |