(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| // @flow | |
| import * as React from 'react'; | |
| import {asyncComponent} from 'react-async-component'; | |
| export const loaderMaker = (bgColor: string = 'transparent') => () => ( | |
| <div style={{position: 'absolute', width: '100%', height: '100%', backgroundColor: bgColor}} /> | |
| ); | |
| const MAX_RETRIES = 3; | |
| const STARTING_BACKOFF = 500; |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.