()
| 4 | |
| 5 | # @rx.page(route='/about') |
| 6 | def about_page() -> rx.Component: |
| 7 | my_child = rx.vstack( |
| 8 | rx.heading("About Us", size="9"), |
| 9 | rx.text( |
| 10 | "Something cool about us.", |
| 11 | ), |
| 12 | spacing="5", |
| 13 | justify="center", |
| 14 | align="center", |
| 15 | min_height="85vh", |
| 16 | id='my-child' |
| 17 | ) |
| 18 | return base_page(my_child) |
nothing calls this directly
no test coverage detected