6-state
6. State
[React] VI. State
1. State
class LikeButton extends React.Component {
constructor(props) {
super(props);
this.state = {
liked : false
};
}
}2. Component 의 lifecyle

출생
인생
사망
Last updated