Answers for "react native hello world"

0

react native hello world

import React from 'react';
import { StyleSheet, Text, View } from 'react-native';

// [email protected]
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',
  },
});
Posted by: Guest on August-06-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language