This project was bootstrapped with Create React App.
Install the required modules by running yarn install
or npm install
in the root folder. (If you don't have yarn globally installed, fetch it using npm install -g yarn
)
To startup the project locally:
$ yarn dev
$ npm run dev
Open (http://localhost:3000/) to view it in the browser.
The page will reload if you make edits.
This app uses typescript, but you can change to javascript if you want to.
Create a to-do app
- Create a list of tasks, where each task can have one or several sub tasks
- When the app starts - load at least 3 tasks
- Make it possible to delete entries
- Make it possible to add new tasks with sub tasks
- Tasks with sub tasks can be expanded to show sub tasks
- Tasks must be able to be marked as done/completed
You decide which tools/framework you use to solve the problem