strauss-oak's picture
dev:strealit dashboard
7e5fb20
raw
history blame
159 Bytes
import streamlit as st
st.set_page_config(page_title='Observatory Dashboard', layout="wide")
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)