Created
March 29, 2022 21:53
-
-
Save enzzoperez/7a7b769634d03b06d21307c620a42143 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 React from 'react'; | |
import { | |
View, | |
} from 'react-native'; | |
import {useRemoteData} from '@hooks'; | |
import {Button} from '@components'; | |
const Home: React.FC = () => { | |
return ( | |
<View > | |
<Button /> | |
</View> | |
); | |
}; | |
export default Home; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment