https://github.com/ajaymathur/react-todo
https://github.com/ajaymathur/react-todo
javascript jest react-native
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ajaymathur/react-todo
- Owner: ajaymathur
- Created: 2017-02-18T09:37:39.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-11T13:52:02.000Z (over 9 years ago)
- Last Synced: 2025-04-09T13:33:33.838Z (over 1 year ago)
- Topics: javascript, jest, react-native
- Language: JavaScript
- Homepage:
- Size: 139 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# react-todo
> This is a simple application which will allow user to create and manage multiple todo lists.
### Data Structure
We will use a single json in which each todo will be identified by a unique key.
```javascript
{
"todoList" : {
"324324-234324234-234234234-23423423234324423" : [
{
"title": "eat",
"completed": false
},
{
"title": "dine",
"completed": false
}
],
"324324-234324234-234234234-2342342344324423" : [
{
"title": "not eat",
"completed": true
},
{
"title": "not dine",
"completed": false
}
]
}
}
```
***Any suggestions and comments on data structure are most welcome.**
### Tech stack
- react-native
- jest
# Contributers
- Pragya Singh (pragya.singh991@gmail.com)
- Ajay Narain Mathur (ajaynarainmathur@gmail.com)