An open API service indexing awesome lists of open source software.

https://github.com/ajaymathur/react-todo


https://github.com/ajaymathur/react-todo

javascript jest react-native

Last synced: 2 months ago
JSON representation

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)