File size: 306 Bytes
3b894dc
d5d63da
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import streamlit as st
from celebi_ui import celebi
from kasumi_ui import kasumi_ui

with st.sidebar:
    selected_tab = st.radio(
        "機能を選択:",
        ["セレビィex", "カスミ"]
    )

if selected_tab == "セレビィex":
    celebi()
elif selected_tab == "カスミ":
    kasumi_ui()