Spaces:
Sleeping
Sleeping
import streamlit as st | |
from app_lib.about import about | |
from app_lib.demo import demo | |
def main(): | |
demo_tab, about_tab = st.tabs(["Demo", "How Does it Work?"]) | |
with demo_tab: | |
demo() | |
with about_tab: | |
about() | |