good first issuehelp wanted
Repository metrics
- Stars
- (21 個のスター)
- PR merge metrics
- (30d に merged PR はありません)
説明
Create React hook which returns and indicator observable which signals when component was unmounted.
const MyComponent = () => {
const unmounted$ = useUnmounted();
useEffect(() => {
something$.pipe(
takeUntil(unmounted$)
);
}, []);
};