ThirdPartyEmailPasswordAuth reference API
The ThirdPartyEmailPasswordAuth
component is used to wrap any component that requires authentication in an application.
Example:
import SuperTokens from "supertokens-auth-react";
import {ThirdPartyEmailPasswordAuth} from "supertokens-auth-react/recipe/thirdpartyemailpassword";
class App extends React.Components {
render() {
return (
<ThirdPartyEmailPasswordAuth>
<LoggedInComponents />
</ThirdPartyEmailPasswordAuth>
);
}
}