React 커스텀hook #체크박스

金秀·2021년 9월 26일
0

매일 리액트

목록 보기
4/15
post-thumbnail

GOAL : 체크 상태가 toggle 상태훅 함수 만들기

state는 checked
체크박스에 onChange ={함수 넣고 parameter는 e.target.checked}

코드

1.(컴포넌트로 쓸) 함수 만들기

function ClickCheckbox() {
  const [checked, setChecked] = useState(true); //기본설정:true;

  return (
    <>
      <FormControlLabel
        label="Testing checkbox"
        control={
          <Checkbox
            //disabled
            color="primary"
            checked={checked}
            onChange={(e) => setChecked(e.target.checked)} //check 바꿔주기
          />
        }
      />
    </>
  );
}
  1. 리턴해줌
    <ClickCheckbox />

output

짜안😎

Reference
https://www.youtube.com/watch?v=vyJU9efvUtQ

profile
기록하기

0개의 댓글

관련 채용 정보