Created
March 22, 2021 17:04
-
-
Save dmnkgrc/240f2311c1a0277d5c74bfdda9a164d6 to your computer and use it in GitHub Desktop.
The screen rendered behind the modal
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
| const Init = (props: Props) => { | |
| const { navigation, dispatch } = props | |
| React.useEffect(() => { | |
| dispatch(appInitService.initApp(navigation)) | |
| }, [dispatch, navigation]) | |
| return null | |
| } | |
| export default connect()(Init) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment