File size: 528 Bytes
9c830d9 62c3527 9c830d9 a4c23e0 9c830d9 d6c3832 9c830d9 0ac3b48 9c830d9 d6c3832 9c830d9 ff3ad99 |
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 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
optons = [
"Option 1",
option_menu(
"Sub Menu",
options=["Option 2", "Option 3"],
default="Option 2",
style={"width": "100%"},
),
]
# Display the streamlit-option-menu
option_menu("Main Menu", options = optons)
|