using ReactNative; using ReactNative.Modules.Core; using ReactNative.Shell; using System.Collections.Generic; namespace <% ProjectName %> { class MainReactNativeHost : ReactNativeHost { public override string MainComponentName => "RXApp"; #if !BUNDLE || DEBUG public override bool UseDeveloperSupport => true; #else public override bool UseDeveloperSupport => false; #endif protected override string JavaScriptMainModuleName => "index"; #if BUNDLE protected override string JavaScriptBundleFile => "ms-appx:///ReactAssets/index.windows.bundle"; #endif protected override List Packages => new List { new MainReactPackage(), }; } }