TrendFlow / mypages /navigation.py
Adapting's picture
1
0c73150
raw
history blame contribute delete
133 Bytes
import streamlit as st
def __go_to__(page:str):
st.session_state['current_page'] = page
def go_to_home():
__go_to__('home')