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