반응형
const cbxShipDayRef = useRef(new Array(7));
<td>{['월', '화', '수', '목', '금', '토', '일'].map((n, i) =>
<div key={n}>
<CheckBoxComponent label={n}
ref={(el) => { if (el !== null) {
cbxShipDayRef.current[i] = el;
cbxShipDayRef.current[i].value = n;
cbxShipDayRef.current[i].checked = el.checked;
} }}
/>
</div>)}
</td>
반응형
'react' 카테고리의 다른 글
[페이지전환]react-router-dom<Link> window.href.location history.push()... (0) | 2024.03.27 |
---|---|
react function Cannot access before initialization (0) | 2024.03.22 |
[React Jsx Syntax] style="display:none;"에러남 style={{display:'none',...}}로 써야함 (0) | 2024.01.22 |
react에 css 파일 import할때 css파일내에 문법에러있으면 import에러남 (0) | 2024.01.11 |
왜 리액트는 대세가 되었을까? DOM관리불필요,유지보수,생산성 (0) | 2024.01.11 |