Skip to content

Instantly share code, notes, and snippets.

@enzzoperez
Created March 29, 2022 21:53
Show Gist options
  • Save enzzoperez/7a7b769634d03b06d21307c620a42143 to your computer and use it in GitHub Desktop.
Save enzzoperez/7a7b769634d03b06d21307c620a42143 to your computer and use it in GitHub Desktop.
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