resume_guide / app.py
Lauredecaudin's picture
add page title 2
b92635c verified
raw
history blame
No virus
182 Bytes
import streamlit as st
from st_pages import Page, Section, show_pages, add_page_title, hide_pages
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)
add_page_title()