INSERT GRAPHIC HERE (include hyperlink in image)
Subtitle or Short Description Goes Here
ideally one sentence >
Functional reactive programming (FRP) is very popular nowadays. The JavaScript community provides us with excellent tools like RxJS, Bacon, and Kefir. But, as we know, they have nothing to do with React. So how we can use the power of FRP in our React application? Using the correct state management, we can make friends with FRP and React and make our application truly reactive. In my lightning talk, I will talk about Focal
import {eventChannel, END} from 'redux-saga' | |
function createUploaderChannel(key, files){ | |
return eventChannel(emit => { | |
const onProgress = ({total, loaded}) => { | |
const percentage = Math.round((loaded * 100) / total) | |
emit(percentage) | |
} | |
All packages, except for Tini have been added to termux-root. To install them, simply pkg install root-repo && pkg install docker
. This will install the whole docker suite, left only Tini to be compiled manually.
import React from 'react' | |
import { | |
Box, | |
BoxProps, | |
Collapse, | |
FormControl, | |
FormControlLabel, | |
Radio, | |
RadioGroup, | |
RadioGroupProps, |