dorsk / banner.tsx
0 лайк(-ов)
0 форк(-ов)
1 файл(-ов)
Последняя активность
| 1 | import { useCallback, useEffect, useState } from "react"; |
| 2 | |
| 3 | // Check that the Enzuzo script has loaded |
| 4 | // Polling is the only option for global variables that are not part of React |
| 5 | function useEnzuzoLoaded() { |
| 6 | const [isLoaded, setIsLoaded] = useState(false); |
| 7 | |
| 8 | useEffect(() => { |
| 9 | if (isLoaded) return; |
| 10 | const interval = setInterval(() => { |
Новее
Позже