sbsmapper / app.py
georad's picture
Update app.py
095d41b verified
raw
history blame
487 Bytes
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")