# React Native Threads Simple ExampleA simple example of using react-native-threads.A single button sends a message to the worker thread, and the thread respondswith a message count that is displayed in the UI.This example also shows how to use Reactotron for debugging.## Running the exampleI assume that you have Node.js, react-native-cli, and the necessary iOS/Androiddependencies installed.To see debugging messages, [install Reactotron](https://github.com/infinitered/reactotron/blob/master/docs/installing.md)and open it before running the app.```shellgit clone https://github.com/Traviskn/react-native-threads.gitcd react-native-threads/examples/SimpleExamplenpm installreact-native run-ios# orreact-native run-android```To run in release mode first build the release thread bundles with the example'snpm scripts:```shellnpm run build-thread-iosnpm run build-thread-android```