Created
November 28, 2016 16:24
-
-
Save gmmorris/9af7801f2d029ead2930fce5f598a700 to your computer and use it in GitHub Desktop.
Snippet for "The magical quest for Componentisation"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// We'll label g() and f() as the `parent` and `child` functions | |
const parent = () => {} | |
const child = () => {} | |
// we'll label the arguments for the composition as `props` | |
const props = [x, y, z] | |
// we'll add a little flexability by allowing the parent and child | |
// to have their own arguments, and leaving it up to the parent to decide | |
// what to do with the child | |
const childProps = [a, b, c] | |
const composition = (props) => parent(props, child(childProps)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment