resume_guide / app.py
Lauredecaudin's picture
Update app.py
d8f8a73 verified
raw
history blame
184 Bytes
import streamlit as st
from st_pages import Page, Section, show_pages, add_page_title, hide_pages
add_page_title()
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)