dashboard-testing / pages /page_2.py
XPMaster's picture
Update pages/page_2.py
3ad9f5c
raw
history blame contribute delete
264 Bytes
# 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