import streamlit as st from multiapp import MultiApp from apps import home, deck, housing # st.set_page_config(layout="wide") apps = MultiApp() # Add all your application here apps.add_app("Real Estate", housing.app) apps.add_app("pydeck", deck.app) apps.add_app("Home", home.app) # The main app apps.run()