React stack

react notes

To learn about:
- v4 vs v5
- redux
- routers
- async (saga)
- lodash
- apis

Redux

redux

material-ui

API

fetch('http://...').then(res => res.json()).then(data => console.log(data));

fetch('http://...', {
    url: 'POST',
    headers: {
        'content-type': 'application/json'
    },
    body: JSON.stringify(...)
})

Redux Crash Course With React on YouTube

Licensed under CC BY-SA 3.0