pub fn start_app<T: PartialEq + 'static>(
    driver: Driver,
    app_state: Computed<T>,
    render: fn(_: &Computed<T>) -> VDomElement
) -> Client
Expand description

Starting point of the app.

Given the driver, the state and main render function, it creates necessary vertigo facilities and runs a never-ending future of reactivity.