eienmojiki commited on
Commit
ba8ffed
·
verified ·
1 Parent(s): 0fca0e0

Update app_streamlit.py

Browse files
Files changed (1) hide show
  1. app_streamlit.py +9 -0
app_streamlit.py CHANGED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ st.set_page_config(page_title="Streamlit Space Example")
4
+
5
+ st.title("Streamlit Demo")
6
+ st.write("This is an app running on Streamlit.")
7
+
8
+ user_input = st.text_input("Enter your name:", "World")
9
+ st.write(f"Hello, **{user_input}** from Streamlit!")