handleCreate = () => {
const { input, todos } = this.state;
if (this.state.input != '') {
this.setState({
input: '', //input 내용 비우기
todos: todos.concat({
id: this.id++,
text: input,
checked: false,
}),
});
}
};
'React' 카테고리의 다른 글
비밀번호 변경 버튼 resetpassword button event (0) | 2020.07.27 |
---|---|
큰따옴표 안에 작은따옴표 넣어야 할 때 t(" ' ' ") (0) | 2020.07.27 |
onClick 시 다른 요소 Toggle 시키기 (0) | 2020.04.10 |
this.toggle 여러개 작동하게 코딩하기 (0) | 2020.04.10 |
scss에서 img 경로 설정 (0) | 2020.04.10 |
댓글