Skip to content
This repository was archived by the owner on Oct 19, 2018. It is now read-only.

rewrite rendering context

Mitch VanDuyn edited this page Feb 19, 2018 · 1 revision

Thoughts on rewriting the rendering context module

consider a basic element: Foo(params) { child1, ..., childn }

this translates to

React.createElement(Foos-react-class, params, result-of-eval-of-child1 .. result-of-eval-of-childn)

now each child is in turn either just another element, so each of those results-of-eval-of-child is just another createElement

Clone this wiki locally