tech/webdev magazine

December 29, 2015

Generating SVG With React – Smashing Magazine

Tuesday, December 29, 2015 Teklinks

React is one of today’s most popular ways to create a component-based UI. It helps to organize an application into small, human-digestible chunks. With its “re-render the whole world” approach, you can avoid any complex internal interactions between small components, while your application continues to be blazingly fast due to the DOM-diffing that React does under the hood (i.e. updating only the parts of the DOM that need to be updated).

Full article