Fix bullet spacing for website.

GitHub markdown rendered it fine, but it was all mashed inline on the website without the extra break.
This commit is contained in:
Spencer Ahrens 2015-04-29 15:41:17 -07:00
parent d662a307b7
commit 8efe148f07
1 changed files with 1 additions and 0 deletions

View File

@ -18,6 +18,7 @@ Let's say we want to add an interactive Map to our app - might as well use [`MKM
Native views are created and manipulated by subclasses of `RCTViewManager`. These subclasses are similar in function to view controllers, but are essentially singletons - only one instance of each is created by the bridge. They vend native views to the `RCTUIManager`, which delegates back to them to set and update the properties of the views as necessary. The `RCTViewManager`s are also typically the delegates for the views, sending events back to JavaScript via the bridge.
Vending a view is simple:
- Create the basic subclass.
- Add the `RCT_EXPORT_MODULE()` marker macro.
- Implement the `-(UIView *)view` method