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