"Airbnb React/JSX 스타일 가이드"의 두 판 사이의 차이

47번째 줄: 47번째 줄:
*https://github.com/airbnb/javascript/tree/master/react
*https://github.com/airbnb/javascript/tree/master/react


[[분류: React]]
[[분류: 가이드]]
[[분류: 가이드]]

2017년 4월 24일 (월) 12:50 판

1 개요

Airbnb React/JSX Style Guide
Airbnb 리액트/JSX 스타일 가이드

2 주요 내용

클래스 생성
// bad
const Listing = React.createClass({
  render() {
    return <div />;
  }
});

// good
class Listing extends React.Component {
  render() {
    return <div />;
  }
}
이름짓기
// bad
const reservationCard = require('./ReservationCard');

// good
const ReservationCard = require('./ReservationCard');

// bad
const ReservationItem = <ReservationCard />;

// good
const reservationItem = <ReservationCard />;

3 같이 보기

4 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}