gradio-streamlit-pg / app_streamlit.py
eienmojiki's picture
Update app_streamlit.py
ba8ffed verified
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!")