UNPKG

agora-react-native-rtm

Version:

React Native around the Agora RTM SDKs for Android and iOS agora

10 lines 293 B
import { useEffect } from 'react'; export function useLogin(client, loginOptions) { useEffect(() => { client.login(loginOptions); return () => { client === null || client === void 0 || client.logout(); }; }, [client, loginOptions]); } //# sourceMappingURL=useLogin.js.map