Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

198
Views
Unable to resolve error regarding provided.placeholder

I am creating a google keep type project and I wanted to add the functionality of dragging and dropping notes to re order them. I am getting the error placeholder not found

here is my code:

<CreateArea onAdd={addingNote}/>
  <DragDropContext>
  <Droppable droppableId="notesloop" >
  {
    (provided) => (
      <div className="notesloop" {...provided.droppableProps} ref={provided.innerRef}>
  
  {notes.map((currentNote,index) => {
    return (
      <Draggable key={index} draggableId={index.toString()} index={index}>
      {(provided) => (
        <div  ref={provided.innerRef} {...provided.draggableProps} {...provided.dragHandleProps}>
      <Note 
    onDel={deleteNote}
    id={index}
    title={currentNote.title}
    content={currentNote.content}
    ></Note>
    {provided.placeholder}
    </div>
    )}
    </Draggable>
    );
  })}
  </div>
    )
  }

     
     </Droppable>
     </DragDropContext>
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!