Ihar Hancharenka 5dff80e88e first
2023-03-27 16:52:17 +03:00

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
)