using ReactNative;
namespace <% ProjectName %>
{
///
/// Provides application-specific behavior to supplement the default Application class.
///
sealed partial class App : ReactApplication
{
private readonly ReactNativeHost _host = new MainReactNativeHost();
///
/// Initializes the singleton application object. This is the first line of authored code
/// executed, and as such is the logical equivalent of main() or WinMain().
///
public App()
{
this.InitializeComponent();
}
///
/// The React Native host.
///
public override ReactNativeHost Host => _host;
}
}