Skip to main content

fromObservable

Callable


  • Get the current value of an Observable as a reactive Atom.

    fromObservable returns a Atom which provides synchronous reactive access to values produced by the given Observable, by subscribing to that Observable. The returned Atom will always have the most recent value emitted by the subscription, and will throw an error if the Observable errors.


    Type parameters

    • T

    Parameters

    • source: any

    Returns DestroyableAtom<T | undefined>