Files
testing123/streamlit_dashboard/streamlit_pages/home_streamlit_page.py
2026-05-21 08:40:24 -04:00

6 lines
318 B
Python

from page_classes.home_page_class import HomePage
from page_classes.page_class_constants import REPORT_CONFIGS
from page_classes.authentication_page_wrapper import AuthenticationPageWrapper
auth_wrapper = AuthenticationPageWrapper(inner_report_page=HomePage, report_config=REPORT_CONFIGS[HomePage])
auth_wrapper.run()