From 2b3fc6ae92561bf29e94a555714646ecbc18e12a Mon Sep 17 00:00:00 2001 From: Christopher Chedeau Date: Thu, 26 Mar 2015 10:22:05 -0700 Subject: [PATCH] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 196ae3ed67..0b3e5ea0e7 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,8 @@ var App = React.createClass({ All operations between the JavaScript application code and the native platform are performed asynchronously, and the native modules can also make use of additional threads as well. This means we can decode images off of the main thread, save to disk in the background, measure text and compute layouts without blocking the UI, and more. As a result, React Native apps are naturally fluid and responsive. The communication is also fully serializable, which allows us to leverage Chrome Developer Tools to debug the JavaScript while running the complete app, either in the simulator or on a physical device. +![](http://facebook.github.io/react-native/img/chrome_breakpoint.png) + ## Touch Handling