How can I make the checkboxes like the ones in the design file?
How do I save info in React on refresh?
How do I implement drag and drop?
How can I make the checkboxes like the ones in the design file?
How do I save info in React on refresh?
How do I implement drag and drop?
Hi tbrownlee, you did a nice job!
About your questions:
How can I make the checkboxes like the ones in the design file?
How do I save info in React on refresh?
How do I implement drag and drop?
IMPORTANT NOTE: splice is a destructive method, which means it modifies the array on which it is called, don't use it in directly on your react state, instead create a new const that store the current todo states and then use the splice method on it, then set your todos state with the new elements by using the setter of your useState.
One more observation: about your mobile design, reduce the breakpoint to 375px, in your solution the background-image is switching to the mobile image too soon, this way, the image is getting the sides "cut off".
Good luck if you implement these improvements, but your solution turned out pretty cool.
Hope you understand, english is not my native language, but i'm trying.
Keep up the hard work! 🚀
Hello Developers👋
Another nice project to practice DOM manipulation with toggle visual state and I enjoyed building it 😄
As always, I'd really appreciate if you could answer the following:👇
1.What did I do wrong? 2.What did I do right? 3.How can I improve? common mistakes?
🙏Thanks in advance Happy Coding😄
Hi Tushar, good job!
Feedbacks about your solution.
1. What did I do wrong?
2. What did I do right?
3. How can I improve? Common mistakes?
I hope you understand, english is not my native language, but I'm trying haha
Keep it up, one step at a time, good job! 🚀
Think I figured out everything, but open to any feedback :)
Hi Kathryn, nice job!
I noticed that there is a problem in your solution, the notifications counter can be negative when clicking on notifications that have already been marked as read. Try to implement some condition that doesn't let the counter be less than zero.
Best.
Nice job Augustine.
I noticed that there is a problem in your solution, the notifications counter can be negative when clicking on notifications that have already been marked as read. Try to implement some condition that doesn't let the counter be less than zero.
Other than that, you nailed it!