https://github.com/royalicing/emoji-dos
https://github.com/royalicing/emoji-dos
Last synced: 24 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/royalicing/emoji-dos
- Owner: RoyalIcing
- Created: 2017-11-06T03:00:39.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-11-06T04:07:38.000Z (almost 9 years ago)
- Last Synced: 2025-08-18T11:59:00.237Z (12 months ago)
- Language: JavaScript
- Size: 105 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Challenges
1. Change Todo Item checkbox to instead use emoji '✅' '❎'
2. Split the todo items into two groups: completed and incompleted
- Hint: first create two functions `filterCompletedItems` and `filterIncompletedItems`, then use them with `.map` in the `render()` method
3. Make todo item description editable
- Hint: create a `onChangeItemDescriptionAtIndex(index, description)` method in your `App`
- Hint: the `onChange` prop of a `` will be called as a function with passed `event`. You can get the description using `event.target.value`
## Info
This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app).
You can find the most recent version of this guide [here](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md).