skip to Main Content

Reactjs – React list elements does not render

Here I am trying to render my tasks' titles in a list. But for some reason they don't render. Here is the MyTasks component: const MyTasks = (props) => { const tasks = [...props.tasks]; console.log(props.tasks, "props.tasks"); console.log(tasks, "tasks"); console.log(tasks[0], "tasks[0]");…

VIEW QUESTION
Back To Top
Search