Posts

Showing posts from December, 2015

React learnings

My links and notes as I learn more about React "React is a library for building composable user interfaces. It encourages the creation of reusable UI components which present data that changes over time." "React is all about building reusable components. In fact, with React the  only  thing you do is build components." I'm finding the React docs are pretty good for a beginner I worked  on this tutorial and built it out. Nice touch that they include all you need including simple server in the starter kit. Allows me to build something straight away. R eactDOM.render() instantiates the root component, starts the framework, and injects the markup into a raw DOM element, provided as the second argument The ReactDOM module exposes DOM-specific methods, while React has the core tools shared by React on different platforms props  are immutable: they are passed from the parent and are "owned" by the parent. To implement interactions, we introduce mu