Advertisement
Guest User

Untitled

a guest
Nov 21st, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import { NativeModules } from 'react-native';
  2. const nativeModule = NativeModules.NativeLogger;
  3.  
  4. export const log = async () => {
  5.     const result = await nativeModule.logAsync('Logged value');
  6.     console.log(`[NativeModule] results = ${result}`);
  7. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement