somebody help me here im stuck

11 Replies
Zoë
Zoë14mo ago
Had a look and I think where you have tasks.map you want to actually show the task and not create a <Task> element (you're already in a <Task>) As for the error in TaskBoard.js you misspelled Column as Colmun
samidev
samidev14mo ago
can you like write the code how to do it (im beginner in reactjs
samidev
samidev14mo ago
Zoë
Zoë14mo ago
That is for Column.js and you already have that (although you aren't passing the index which you'll need as it looks like you're going to be dragging list items and you need to know which index is moving where) You want to move onto the next part of the tutorial which talks about Task.js. I don't know what the tutorial wants you to end up with and it's probably better to stick with that. I do have a very basic todo list I made while live coding for someone (it explains the slightly odd comments) if that helps https://codepen.io/z-/pen/vYRpXOp
Zed Dash
CodePen
React checklist made for znook
Made while in professor mode...
samidev
samidev14mo ago
thank you so much for telling me i fixed it ❤️ didn't expect it'
Zoë
Zoë14mo ago
Easy mistake to make
samidev
samidev14mo ago
btw brother how can i show now it on the window i did it but now i dont know how to show it on the local why is this ?
samidev
samidev14mo ago
samidev
samidev14mo ago
?
Coder_Carl
Coder_Carl14mo ago
This is to recursively place a Task / subtask. It's a common way to lay out nested navigation etc
Zoë
Zoë14mo ago
But not in this situation It was non-conditional so would have been infinite recursion if tasks was passed Inside App.js you want to import from './components/TaskBoard' './components/Column' './components/Task'