Skip to content

Instantly share code, notes, and snippets.

@ArtskydJ
Last active February 23, 2024 15:35
Show Gist options
  • Save ArtskydJ/bad281a5cf02ccbb9258d5101873cdbe to your computer and use it in GitHub Desktop.
Save ArtskydJ/bad281a5cf02ccbb9258d5101873cdbe to your computer and use it in GitHub Desktop.
<script src="https://gist.github.com/ArtskydJ/bad281a5cf02ccbb9258d5101873cdbe.js?file=test.jsx"></script>
import { StyleSheet, Text, View } from 'react-native';
export default function App() {
return (
<View style={styles.container}>
<Text>Hello world!</Text>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment