摘要:
Developing React with Poi is as easy as adding the babel-preset-react-appto a .babelrc and installing React. This lesson will walk you through that qu 阅读全文
摘要:
Poi can easily launch an index.js file simply by running the poi command. This will launch a dev-server and automatically reload whenever you make cha 阅读全文
摘要:
A histogram is an accurate representation of the distribution of numerical data. Y axis is the occurances, X axis is the % of daily return. There are 阅读全文
摘要:
In React, when you want to set the state which calculation depends on the current state, using an object can lead to state inconsistency. This is due 阅读全文
摘要:
This lesson takes the concept of render props and migrates it over to streaming props by keeping the same example and simple refactoring the Togglecom 阅读全文
摘要:
If you hard-code a stream of props to target a specific prop, it becomes impossible to reuse that stream with any other components. Configuring your p 阅读全文
摘要:
Functions created with mapPropsStream canned be composed together to build up powerful streams. Bring in the compose helper from Recompose then simply 阅读全文
摘要:
Rather than using Components to push streams into other Components, mapPropsStream allows you to create functions that can wrap components to create s 阅读全文
摘要:
You can decouple the parent stream Component from the mapped React Component by using props.children instead. This process involves mapping the stream 阅读全文
摘要:
Combining input streams then using scan to track the results is a common scenario when coding with streams. This lesson walks you through setting up t 阅读全文