How to use the rxfire/database.object function in rxfire

To help you get started, we’ve selected a few rxfire examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github FirebaseExtended / reactfire / reactfire / database / index.tsx View on Github external
export function useDatabaseObject(
  ref: database.Reference,
  options?: ReactFireOptions
): QueryChange | T {
  return useObservable(
    object(ref),
    `RTDB: ${ref.toString()}`,
    options ? options.startWithValue : undefined
  );
}