brahimdidi / Todolist-App

In this project I will create a simple app that allows users to input and remove what hey plan to do.
3 stars 0 forks source link

Todolist 1 list structure #2

Closed brahimdidi closed 2 years ago

brahimdidi commented 2 years ago

IN this project we will build a to-do list app which will be functionally soon.

requiremnts

Set up a new project with webpack that is based on the webpack exercise you have already completed. Create an index.html file and write your HTML markup here. Create an empty To Do List placeholder (

or
    element). The index.html file must be set as a template using the HTML Webpack Plugin. Create an index.js file and set an array of some simple to do tasks (array of objects). Each task object should contain three keys: 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. On page load render the dynamically created list of tasks in the dedicated placeholder. The list should apear in order of the index values for each task. Create a style.css and set rules for the To Do List. CSS must be loaded by Webpack Style/CSS Loader. Your list should be a clone of the part of the minimalist project captured in the video below