diff --git a/src/sdk.tsx b/src/sdk.tsx index ae34792b..2e7af1a6 100644 --- a/src/sdk.tsx +++ b/src/sdk.tsx @@ -15,15 +15,15 @@ import { ObservableStatus, useObservable } from './useObservable'; import { from } from 'rxjs'; import { ReactFireOptions } from '.'; -const AppCheckSdkContext = React.createContext(undefined); -const AuthSdkContext = React.createContext(undefined); -const AnalyticsSdkContext = React.createContext(undefined); -const DatabaseSdkContext = React.createContext(undefined); -const FirestoreSdkContext = React.createContext(undefined); -const FunctionsSdkContext = React.createContext(undefined); -const StorageSdkContext = React.createContext(undefined); -const PerformanceSdkContext = React.createContext(undefined); -const RemoteConfigSdkContext = React.createContext(undefined); +export const AppCheckSdkContext = React.createContext(undefined); +export const AuthSdkContext = React.createContext(undefined); +export const AnalyticsSdkContext = React.createContext(undefined); +export const DatabaseSdkContext = React.createContext(undefined); +export const FirestoreSdkContext = React.createContext(undefined); +export const FunctionsSdkContext = React.createContext(undefined); +export const StorageSdkContext = React.createContext(undefined); +export const PerformanceSdkContext = React.createContext(undefined); +export const RemoteConfigSdkContext = React.createContext(undefined); type FirebaseSdks = Analytics | AppCheck | Auth | Database | Firestore | FirebasePerformance | FirebaseStorage | Functions | RemoteConfig;