UNPKG

expo-otp-retriever

Version:

Expo module for retrieving OTP codes on Android using Google's SMS Retriever API

14 lines (11 loc) 211 B
import { useEffect } from 'react'; declare global { interface Window { frameworkReady?: () => void; } } export function useFrameworkReady() { useEffect(() => { window.frameworkReady?.(); }); }