-
Name a Component ClassStudy/React 2020. 5. 26. 14:41
Name a Component Class
Good! Subclassing React.Component is the way to declare a new component class.
When you declare a new component class, you need to give that component class a name.
On line 4, notice that our component class’s name is MyComponentClass.
Component class variable names must begin with capital letters!
This adheres to JavaScript’s class syntax.
It also adheres to a broader programming convention in which class names are written in UpperCamelCase.
In addition, there is a React-specific reason why component class names must always be capitalized. We’ll get to that soon!
Name a Component Class
Subclassing React.Component는 새로운 컴포넌트 클래스를 정의하기 위한 방법이다.
당신이 새로운 컴포넌트 클래스를 선언할 때, 당신은 컴포넌트 클래스에 이름을 주어야 한다.
line4에서 우리의 컴포넌트 클래스의 이름이 MyComponentClass 라는 것을 주목해라.
컴포넌트클래스 변수 이름은 반드시 대문자로 시작해야한다.
이것은 자바스크립트의 클래스 문법에 따른다.
그것은 또한 UpperCamelCase에 클래스 이름이 쓰여지는 더 넓은 프로그래밍 규약을 고수한다.
게다가, 컴포넌트클래스 이름에 반드시 대문자가 쓰여지는 리엑트의 특별한 이유가 있다. 곧 알아보도록 하자!
import React from 'react'; import ReactDOM from 'react-dom'; class MyComponentClass extends React.Component{}
'Study > React' 카테고리의 다른 글
Create a Component Instance (0) 2020.05.26 Component Class Instructions (0) 2020.05.26 Create a Component Class (0) 2020.05.26 Import ReactDOM (0) 2020.05.26 Import React (0) 2020.05.26