SentenceSimplifier / navigate.py
mlkorra
Update App with About Section
3f6af0f
import streamlit as st
class Navigate:
def __init__(self):
self.apps = []
def add_app(self, title, func):
self.apps.append({"title": title, "function": func})
def run(self):
#st.sidebar.header("Sections")
app = st.sidebar.radio("", self.apps, format_func=lambda app: app["title"])
app["function"]()