File size: 487 Bytes
1b200e2 2b0f5b9 7f335ca 0cb707e 2b0f5b9 506e0a3 1b0be8b a39aede 2b0f5b9 cc60723 7f335ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import streamlit as st
from streamlit_option_menu import option_menu
#for k, v in st.session_state.items():
# st.session_state[k] = v
with st.sidebar:
selected=option_menu(
menu_title = "SBS V2.0 Mapper",
options = ["Chapters for selection", "DEMO for text entry", "DEMO for file upload (coming)", "About the app"],
icons = ["book", "keyboard", "upload", "info"],
menu_icon = "receipt",
default_index = 0,
)
st.sidebar.text("Project by JA-RAD") |