Set the title of a page.
@solara.component def Title(title: str): ...
import solara @solara.component def Page(): with solara.VBox() as main: MyAwesomeComponent() solara.Title("My page title") return main
If multiple Title components are used, the 'deepest' child will take precedence.