왜 JSX 소품은 화살표 기능이나 바인드를 사용하면 안 되는가? 리액트 앱에서 보풀이 발생하고 있는데 다음 오류가 나타납니다. error JSX props should not use arrow functions react/jsx-no-bind 기능)을 실행하고 onClick {this.state.photos.map(tile => ( this.selectPicture(tile)} style={{position: 'absolute', zIndex: 99, padding: 5, backgroundColor: 'rgba(255, 255, 255, 0.72)'}} /> } > this.handleOpen(tile.img)} src={tile.img} style={{cursor: 'pointer'}}/> ))} 이..