React stack
To learn about: - v4 vs v5 - redux - routers - async (saga) - lodash - apis
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(...)
})
Links
Redux Crash Course With React on YouTube
Licensed under CC BY-SA 3.0