function Welcome(props) {
return <h1>Hello, {props.name}</h1>;
}
class Welcome extends React.Component {
render() {
return <h1>Hello, {this.props.name}</h1>;
}
}
컴포넌트를 생성할 때 render() 메서드는 무조건 정의해야하고, return도 해주어야함.
props = property의 줄인말
.dot으로 속성명에 접근 가능
props.속성명으로 속성 값을 가져올 수 있음.