< input type="checkbox" > 의 체크 여부를 확인하고 싶다면 event.target.checked 사용
const getCheckboxMethod = (e) => {
if (e.target.checked) {
setSelectMethod([...selectMethod, e.target.value]);
} else {
setSelectMethod(selectMethod.filter((el) => el !== e.target.value));
}
};