good first issuehelp wanted
Metriche repository
- Star
- (21 stelle)
- Metriche merge PR
- (Nessuna PR mergiata in 30 g)
Descrizione
Create React hook which returns and indicator observable which signals when component was unmounted.
const MyComponent = () => {
const unmounted$ = useUnmounted();
useEffect(() => {
something$.pipe(
takeUntil(unmounted$)
);
}, []);
};