AmithAdiraju1694's picture
feat_preo_cmod (#3)
2a12b77 verified
raw
history blame contribute delete
318 Bytes
from streamlit import session_state as sst
def navigate_to(page: str) -> None:
"""
Function to set the current page in the state of streamlit. A helper for
simulating navigation in streamlit.
Parameters:
page: str, required.
Returns:
None
"""
sst["page"] = page