개발/Frontend

[리액트네이티브] React Native 주석 처리 방법

Dane.Kim 2023. 4. 21.

react, react-native 라고 해서 별다를 것 없이

 

javascript 이니까... // 이나 /* */를 사용하면 될 것이라고 생각했다.

 

그러나 return 영역에서 주석하는 방법은 중괄호를 사용해야한다.

 

{/* 주석 */}

 

<View style={styles.container}>
      {/* 메인 로고 */}
      <Image style={{ marginTop: hp(10), width: wp(100), height: wp(60), alignSelf: "center" }} source={require("./assets/splash.png")} />
      <Text style={{ marginTop: hp(5), width: wp(70), textAlign: "center", alignSelf: "center", fontSize: hp(3) }}>
        <Text style={{ color: "#BBACF2", fontWeight: "bold" }}>haha</Text> blah blah
      </Text>
      
      ...

댓글