Spaces:
Sleeping
Sleeping
Update app_streamlit.py
Browse files- 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!")
|