Created
May 3, 2020 15:53
-
-
Save farmisen/4e05587fdb705a9e6c0a885603065fe9 to your computer and use it in GitHub Desktop.
Signin modal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[@react.component] | |
let make = (~isActive: bool, ~closeModal: 'a, ~isSignUpModal: bool=false) => { | |
let initialAuthState = isSignUpModal ? Some("signup") : None; | |
<Modal isActive closeModal> | |
<Amplify.Authenticator ?initialAuthState /> | |
</Modal>; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment