[ ] Created an template.html file and write the HTML markup in it,
[ ] Create an index.js file and set an array of some simple to do tasks (array of objects). Each task object containd three keys
[description [string]][completed [bool]][index: [number]]
[ ] Wrote a function to iterate over the tasks array and populate an HTML list item element for each task,
[ ] On page load render the dynamically created list of tasks in the dedicated placeholder
[ ] Created a style.css and set rules for the To Do List. CSS was loaded by Webpack Style/CSS Loader
[ ] All your source files (index.html, index.js and style.css) were located in /src directory and distribution files were be generated by webpack and served by webpack dev server from /dist folder.
In this project, I: