function TestCom(){
return(
< h4>hello~~< /h4>
)
}
function App () {
return(
< TestCom>< /TestCom>
)
}
class 클래스이름 extends React.Component {
constructor(){
super()
}
render(): React.ReactNode {
return()
}
}
>class 클래스이름 extends React.Component {
constructor(props){
super(props)
// ✅state 생성
this.state = {name : 'Yu', age = 26}
}
render(): React.ReactNode {
return(
< div>
// ✅state 사용
< h4>{this.state.name}, {this.state.age}< /h4>
// ✅state 변경
< button onClick = {() => {
this.setState({age : 27})
}>button< /button>
< /div>
)
}
}
🌟 잘못된 부분에 대한 말씀은 언제나 저에게 큰 도움이 됩니다. 🌟
👍 감사합니다!! 👍