Skip to content

Commit

Permalink
doc: document how to use AppDelegate initialProps in template
Browse files Browse the repository at this point in the history
  • Loading branch information
jblarriviere committed Jan 17, 2023
1 parent f9b9282 commit 93e2a94
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions template/ios/HelloWorld/AppDelegate.mm
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ @implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.moduleName = @"HelloWorld";
// You can add your custom initial props in the dictionary below.
// They will be passed down to the ViewController used by React Native.
self.initialProps = @{};
return [super application:application didFinishLaunchingWithOptions:launchOptions];
}

Expand Down

0 comments on commit 93e2a94

Please sign in to comment.