Front-end/React

React [클래스형, 함수형]

ekki88 2022. 9. 26. 14:35

클래스형 

class Hello extends Reacr.Component {
render() {
	return <h1>hello {this.props.name}</h1>;
    }
}

//rcc 단축키

React.Component 클래스를 상속 

데이터는 this.state에 

render() 함수에 HTML과 같은 JSX문법을 이용해서 데이터  UI로 표기

 

함수형

function Hello () {
return <h1>hello, {props.name}</h1>;
}

//rsi 단축키