10 week program application
Write an application in React Native which helps to improve users breathing experience.
- Every week has subsets of check items
- Once all checks are checked the "Unlock Week #" is shown
| const sub = function(init, ...substractors) { | |
| if (!substractors.length) { | |
| return init; | |
| } | |
| return init - substractors.reduce((a, v) => a + v) | |
| } |