зеркало из
https://github.com/iharh/notes.git
synced 2025-11-01 06:06:08 +02:00
11 строки
270 B
Plaintext
11 строки
270 B
Plaintext
https://reactjsexample.com/a-react-utility-belt-for-function-components-and-higher-order-components/
|
|
|
|
const debug = withProps(console.log)
|
|
|
|
const enhance = compose(
|
|
withState(/*...args*/),
|
|
debug, // print out the props here
|
|
mapProps(/*...args*/),
|
|
pure
|
|
)
|