October 2019
Intermediate to advanced
426 pages
11h 49m
English
We start by defining our actions, as these will be important when defining the reducer function.
Let's define the actions now:
{ type: 'LOGIN', username: 'Daniel Bugl', password: 'notsosecure' }
{ type: 'REGISTER', username: 'Daniel Bugl', password: 'notsosecure', passwordRepeat: 'notsosecure' }
{ type: 'LOGOUT' }
Now, we have ...
Read now
Unlock full access