Spaces:
Sleeping
Sleeping
#import appStore.sdg_analysis as sdg_analysis | |
#import appStore.info as info | |
from appStore.multiapp import MultiApp | |
import streamlit as st | |
st.set_page_config(page_title = 'Vulnerability Classifier', | |
initial_sidebar_state='expanded', layout="wide") | |
app = MultiApp() | |
app.add_app("About","house", info.app) | |
app.add_app("SDG Analysis","gear",sdg_analysis.app) | |
app.run() |