11 lines
511 B
Python
11 lines
511 B
Python
import streamlit as st
|
|
from streamlit_authenticator import Authenticate
|
|
from page_classes.funding_milestones_page_class import NetworkFundingMilestonesReportPage
|
|
|
|
# Imports from this module
|
|
|
|
from page_classes.page_class_constants import REPORT_CONFIGS
|
|
from page_classes.authentication_page_wrapper import AuthenticationPageWrapper
|
|
|
|
auth_wrapper = AuthenticationPageWrapper(inner_report_page=NetworkFundingMilestonesReportPage, report_config=REPORT_CONFIGS[NetworkFundingMilestonesReportPage])
|
|
auth_wrapper.run() |