Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gmmorris/9af7801f2d029ead2930fce5f598a700 to your computer and use it in GitHub Desktop.
Save gmmorris/9af7801f2d029ead2930fce5f598a700 to your computer and use it in GitHub Desktop.
Snippet for "The magical quest for Componentisation"
// 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