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