3ad9f5c 89e66b3 3ad9f5c 2785c1d 3ad9f5c
1
2
3
4
5
6
7
8
9
# page_2.py inside 'pages' folder import streamlit as st def run(go_to_main, go_to_page_1): st.markdown("# Page 2 📊") st.button('Go to Main Page', on_click=go_to_main) st.button('Go to Page 1', on_click=go_to_page_1) # Rest of your page 2 code