Configure the given app instance to display the given component
(
self,
app: _App,
component: RootComponentConstructor,
options: Any | None = None,
)
| 18 | """A constructor for options passed to :meth:`BackendType.configure`""" |
| 19 | |
| 20 | def configure( |
| 21 | self, |
| 22 | app: _App, |
| 23 | component: RootComponentConstructor, |
| 24 | options: Any | None = None, |
| 25 | ) -> None: |
| 26 | """Configure the given app instance to display the given component""" |
| 27 | |
| 28 | def create_development_app(self) -> _App: |
| 29 | """Create an application instance for development purposes""" |
no outgoing calls
no test coverage detected