Skip to content

Instantly share code, notes, and snippets.

@krystalcampioni
Created June 7, 2022 19:37
Show Gist options
  • Save krystalcampioni/9e5a7eeb588547c1af1252ac111f05a9 to your computer and use it in GitHub Desktop.
Save krystalcampioni/9e5a7eeb588547c1af1252ac111f05a9 to your computer and use it in GitHub Desktop.
import React from 'react';
import {Text, View} from 'react-native';
export function HelloWorldApp() {
return (
<View
style={{
flex: 1,
justifyContent: 'center',
alignItems: 'center',
}}>
<Text>Hello, world!</Text>
</View>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment