Fix typo.

This commit is contained in:
Spencer Ahrens 2015-03-26 11:13:46 -07:00
parent 6f954612fe
commit bcabb3bc4a
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ var GeoInfo = React.createClass({
## Extensibility ## Extensibility
It is certainly possible to create a great app using React Native without writing a single line of native code, but React Native is also designed to be easily expended with custom native views and modules - that means you can reuse anything you've already built, and can import and use your favorite native libraries. To create a simple module in iOS, create a new class that implements the `RCTBridgeModule` protocol, and add `RCT_EXPORT` to the function you want to make available in JavaScript. It is certainly possible to create a great app using React Native without writing a single line of native code, but React Native is also designed to be easily extended with custom native views and modules - that means you can reuse anything you've already built, and can import and use your favorite native libraries. To create a simple module in iOS, create a new class that implements the `RCTBridgeModule` protocol, and add `RCT_EXPORT` to the function you want to make available in JavaScript.
```objc ```objc
// Objective-C // Objective-C