Skip to content

Instantly share code, notes, and snippets.

@farmisen
Created May 3, 2020 15:53
Show Gist options
  • Save farmisen/4e05587fdb705a9e6c0a885603065fe9 to your computer and use it in GitHub Desktop.
Save farmisen/4e05587fdb705a9e6c0a885603065fe9 to your computer and use it in GitHub Desktop.
Signin modal
[@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