To-Do List project is the application for a to-do list, users can add and remove tasks from the to-do list. Mark tasks as completed. Users can delete all completed tasks at once.
Set up a project with webpack that is based on the webpack exercise.
Create an index.html file and write HTML markup here.
Create an empty To-Do List placeholder div.
Create an index.js file and set an array of some simple to-do tasks (array of objects) with
description [string].
completed [bool].
index: [number].
Write a function to iterate over the tasks array and populate an HTML list item element for each task.
Create a style.css and set rules for the To-Do List and loaded by Webpack Style/CSS Loader
Set up a project with webpack that is based on the webpack exercise. Create an index.html file and write HTML markup here. Create an empty To-Do List placeholder div. Create an index.js file and set an array of some simple to-do tasks (array of objects) with