Right now we've [blessed a subset](https://github.com/posit-dev/py-shiny/blob/main/shiny/express/layout.py) of UI functions as "express-able" context managers (i.e., they work with `with`). Seems it'd be worth having a helper function to help transform UI functions into express-able ones? For example: ```python from shiny import ui from shiny.express import as_express_ui page_navbar = as_express_ui(ui.page_navbar) ```