Created
April 18, 2022 00:07
-
-
Save MarekZeman91/2893adb8e6f3656a92b0062f36fbc8cf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { EffectAsyncCallback, useEffectAsync } from './useEffectAsync'; | |
export const useOnComponentMountAsync = (asyncEffect: EffectAsyncCallback) => { | |
useEffectAsync(asyncEffect, []); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment