blob: 1288e36d0d5380f797a900bd4555efb4a0333d62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# React Redux ToDos
A ToDo app implementation with React and Redux.
## Description
This a simple ToDo application used to learn Redux.
The app has different views:
- login (and a logout link)
- a todos list where user can add new todos and mark them as done
- a single todo view where user can see todo details and edit data
- an account view
## Requirements
- Yarn
## How to
### Start the development version
`yarn run start`
### Start the build version:
1. `yarn run build`
2. (`yarn global add serve`)
3. `serve -s build`
## Login
User: `demo@email.com`
Password: `demo`
## Preview
You can see a live preview here: https://demo.armandphilippot.com/#todos
| Todos list | Single todo |
| --- | --- |
|  |  |
| Login Page | Account Page |
| --- | --- |
|  |  |
## Disclaimer
This app is not intended to be used. There is no registration form and password encryption is not implemented. The only user available is a demo user.
## License
This project is open-source and available under [MIT license](../LICENSE).
|