| # app.py | |
| import streamlit as st | |
| st.title("Streamlit inside Gradio Space 🚀") | |
| st.write("This is a Streamlit app running in a Gradio Space.") | |
| number = st.slider("Pick a number", 0, 100, 25) | |
| st.write("You chose:", number) | |
| # app.py | |
| import streamlit as st | |
| st.title("Streamlit inside Gradio Space 🚀") | |
| st.write("This is a Streamlit app running in a Gradio Space.") | |
| number = st.slider("Pick a number", 0, 100, 25) | |
| st.write("You chose:", number) | |