Configure the given app instance to display the given component
(
app: Any, component: RootComponentConstructor, options: None = None
)
| 26 | |
| 27 | # BackendType.configure |
| 28 | def configure( |
| 29 | app: Any, component: RootComponentConstructor, options: None = None |
| 30 | ) -> None: |
| 31 | """Configure the given app instance to display the given component""" |
| 32 | if options is not None: # nocov |
| 33 | msg = "Default implementation cannot be configured with options" |
| 34 | raise ValueError(msg) |
| 35 | return _default_implementation().configure(app, component) |
| 36 | |
| 37 | |
| 38 | # BackendType.create_development_app |
nothing calls this directly
no test coverage detected