components/Greeting.js

    import React from 'react';
    import {View, Text} from 'react-native';
    
    function Greeting(props) {
      return (
        <>
          <View>
            <Text>안녕하세요 {props.name}!</Text>
          </View>
          <Text>Extra Text!</Text>
        </>
      );
    }
    
    Greeting.defaultProps = {
      name: '리액트 네이티브',
    };
    
    export default Greeting;
    신간 소식 구독하기
    뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.