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$)
);
}, []);
};