Skip to main content
function useSignInReducer(initialState: SignInState): [SignInState, ActionDispatch<[SignInAction]>];
A reducer hook for the SignIn component.

Parameters

ParameterTypeDescription
initialStateSignInStateThe initial state of the component.

Returns

[SignInState, ActionDispatch<[SignInAction]>] The current state and dispatcher to perform actions on the state.
I