Spaces:
Sleeping
Sleeping
File size: 267 Bytes
bfc7b8a |
1 2 3 4 5 6 7 8 9 10 11 |
import streamlit as st
async def navigation():
# Navigation
st.sidebar.page_link("app.py", label="Home", icon="🤖")
st.sidebar.page_link("pages/01_🕰️_History.py", label="History", icon="🕰️")
# Divider
st.sidebar.divider()
|