Skip to content

Commit

Permalink
Use placeholders instead of hardcoded strings
Browse files Browse the repository at this point in the history
  • Loading branch information
Riccardo Cipolleschi committed Mar 16, 2022
1 parent d1d8746 commit fa0827c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/new-architecture-app-renderer-ios.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@ The way to render your app with Fabric depends on your setup. Here is an example

UIView *rootView =
[[RCTFabricSurfaceHostingProxyRootView alloc] initWithBridge:_bridge
moduleName:@"MyTestApp"
moduleName:<#moduleName#>
initialProperties:nil];
#else
// Current implementation to define rootview.
RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge
moduleName:@"MyTestApp"
moduleName:<#moduleName#>
initialProperties:nil];
#endif
```
Expand Down

0 comments on commit fa0827c

Please sign in to comment.