multipage / pages /page2.py
ricklon's picture
Update pages/page2.py
ad29aca verified
raw
history blame contribute delete
321 Bytes
import streamlit as st
st.title('Page 2')
# Displaying shared data from Page 1
if 'shared_data' in st.session_state:
st.write(f"Data from Page 1: {st.session_state['shared_data']}")
# Button to go back to Page 1
if st.button('Back to Page 1'):
st.switch_page('pages/page1.py')
st.write("Welcome to Page 1!")