React Native Custom Hooks - Part 1
- useEffectOnce
import { useEffect } from 'react';
export function useEffectOnce(cb) {
useEffect(cb, []);
}
Example
import { useEffectOnce } from './hooks';
useEffectOnce(() => {
console.log('Will be executed at first render only');
});
- useU...
anasnmu.hashnode.dev2 min read
Developer Avocado
Frontend developer. Debugging this world one console.log() at a time
Another great and clear article! Anas Nabil