Skip to content

Instantly share code, notes, and snippets.

@WallysonGalvao
Created January 15, 2023 15:01
Show Gist options
  • Save WallysonGalvao/b0eb48ff066afd9fc37ebb97916d2e6b to your computer and use it in GitHub Desktop.
Save WallysonGalvao/b0eb48ff066afd9fc37ebb97916d2e6b to your computer and use it in GitHub Desktop.
RickAndMortyWiki
import React from 'react';
import {StatusBar, Text, View} from 'react-native';
const App = () => {
return (
<>
<StatusBar barStyle={'dark-content'} />
<View style={{flex: 1, justifyContent: 'center', alignItems: 'center'}}>
<Text>Rick and Morty Characters API</Text>
</View>
</>
);
};
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment