React-Native nwitter [ #2 ]

React Native로 nwitter 만들기

App.js 정리하기

먼저, 복잡하게 적혀져 있는 app.js 파일을 정리해주도록 하겠습니다!

/**
 * Sample React Native App
 * https://github.com/facebook/react-native
 *
 * @format
 * @flow strict-local
 */

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

const App = () => {
  return (
    <>
      <View style={styles.continer}>
        <Text style={styles.text}>Hello</Text>
      </View>
    </>
  );
};

const styles = StyleSheet.create({  
  continer: {
    flex:1,
    backgroundColor: '#fff',
  },
  text : {
    color: 'blue',
  },
});

export default App;

결과보기

좋은 웹페이지 즐겨찾기