good first issuehelp wanted
仓库指标
- 星标
- (21 个星标)
- PR 合并指标
- (30 天内没有已合并 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$)
);
}, []);
};