using ReactNative.Bridge; using System; using System.Collections.Generic; using Windows.ApplicationModel.Core; using Windows.UI.Core; namespace Npm.Module.Test.Thangtmc73.RNNpmModuleTestThangtmc73 { /// /// A module that allows JS to share data. /// class RNNpmModuleTestThangtmc73Module : NativeModuleBase { /// /// Instantiates the . /// internal RNNpmModuleTestThangtmc73Module() { } /// /// The name of the native module. /// public override string Name { get { return "RNNpmModuleTestThangtmc73"; } } } }