react-beautiful-dnd-kr icon indicating copy to clipboard operation
react-beautiful-dnd-kr copied to clipboard

오타 speling

Open minsekim1 opened this issue 3 years ago • 0 comments

아랫 부분에 오타가 있습니다. 수정해주세요..

<Draggable draggable="draggable-1">
  {(provided, snapshot) => {
    const style = {
      ...provided.draggableStyle,
      **backgroundColor: snapshot.isDragging : 'blue' : 'white'
      fontSize: 18,
    }
    return (
      <div>
        <div
          ref={provided.innerRef}
          style={style}
        >
          Drag me!
        </div>
      </div>
    );
  }}
</Draggable>

backgroundColor: snapshot.isDragging : 'blue' : 'white',** => **backgroundColor: snapshot.isDragging ? 'blue' : 'white'

minsekim1 avatar Oct 15 '21 16:10 minsekim1