mpi_data_store / app.py
rianders's picture
first app.py update
911d489
raw
history blame
372 Bytes
import streamlit as st
# Main script that Streamlit runs.
# Individual pages are in the 'pages' folder.
st.set_page_config(page_title="Data Processing Interface", layout="wide")
st.title("Data Processing Interface")
# The content of this script can be minimal, as the pages are defined in separate files.
st.write("Please navigate to the sections using the sidebar.")