Skip to content

Instantly share code, notes, and snippets.

@enzzoperez
Last active March 30, 2022 13:46
Show Gist options
  • Save enzzoperez/79664b1b2c4463d4752422e959cecc56 to your computer and use it in GitHub Desktop.
Save enzzoperez/79664b1b2c4463d4752422e959cecc56 to your computer and use it in GitHub Desktop.
import React from 'react';
import {
View,
} from 'react-native';
import {useRemoteData} from 'hooks/useRemoteData'; //or '@hooks/useRemoteData'
import {Button} from 'components/button'; //or '@components/button'
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