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