Skip to content

Commit 569f368

Browse files
committed
Adding import statements to auth
1 parent ae8ed37 commit 569f368

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

FirebaseUI/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ instance. The `FIRAuthUI` instance associated with the default `FIRAuth`
5151
instance can be accessed as follows:
5252

5353
```objective-c
54+
@import Firebase
55+
@import FirebaseAuthUI
56+
...
5457
[FIRApp configure];
5558
FIRAuthUI *authUI = [FIRAuthUI authUI];
5659
authUI.delegate = self; // Set the delegate to receive callback.
@@ -59,6 +62,9 @@ authUI.delegate = self; // Set the delegate to receive callback.
5962
This instance can then be configured with the providers you wish to support:
6063

6164
```objective-c
65+
@import FirebaseGoogleAuthUI
66+
@import FirebaseFacebookAuthUI
67+
...
6268
FIRGoogleAuthUI *googleAuthUI =
6369
[[FIRGoogleAuthUI alloc] initWithClientID:kGoogleClientID];
6470
FIRFacebookAuthUI *facebookAuthUI =

0 commit comments

Comments
 (0)