dashboard-testing / pages /page_1.py
XPMaster's picture
Update pages/page_1.py
d360d69
raw
history blame contribute delete
264 Bytes
# page_1.py inside 'pages' folder
import streamlit as st
def run(go_to_main, go_to_page_2):
st.markdown("# Page 1 ๐Ÿ“„")
st.button('Go to Main Page', on_click=go_to_main)
st.button('Go to Page 2', on_click=go_to_page_2)
# Rest of your page 1 code