File size: 595 Bytes
9c830d9
 
 
a4c23e0
 
 
 
 
 
 
 
 
 
9c830d9
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import streamlit as st
from streamlit_option_menu import streamlit_option_menu


embed = """<iframe
	src="https://cosmoai-cosmos.hf.space"
	frameborder="0"
	width="850"
	height="450"
></iframe>
"""
st.markdown(embed, unsafe_allow_html=True)

# Create a nested streamlit-option-menu
options = [
    "Option 1",
    streamlit_option_menu(
        "Sub Menu",
        options=["Option 2", "Option 3"],
        default="Option 2",
        style={"width": "100%"},
    ),
]

# Display the streamlit-option-menu
streamlit_option_menu("Main Menu", options, default="Option 1", style={"width": "100%"})