()
| 21 | from . import blog, contact, navigation, pages |
| 22 | |
| 23 | def index() -> rx.Component: |
| 24 | return base_page( |
| 25 | rx.cond(SessionState.is_authenticated, |
| 26 | pages.dashboard_component(), |
| 27 | pages.landing_component(), |
| 28 | ) |
| 29 | ) |
| 30 | |
| 31 | |
| 32 |
nothing calls this directly
no test coverage detected