Spaces:
Runtime error
Runtime error
import streamlit as st | |
st.title("This is our app") | |
st.write("This is just a random para meant to fill out the space over here till we have something") | |
x = st.slider('Select a value') | |
st.write(x, ' squared is', x * x) | |