Slide 14
Slide 14 text
echo ;
An interesting thing came out of this, instead of each page fetching all the data it might need up front and passing it off to a template, each
component became responsible for the data it accepted as arguments and the data it would fetch before rendering. In this case we need to know
information about the relationship between the viewer and user with uid 1234.
With server rendering you only send data down the tree, never up, so the data flow is unidirectional and always flowing down, never back up.