Sam Milledge
Results
2
comments of
Sam Milledge
You could also do this: ``` import { NativeModules } from 'react-native'; NativeModules.DigitsManager.sessionDetails((error, sessionDetails) => { ... }); ```
+1 If you just need to setup a reverse proxy the following should work; ``` nginx_sites: - server: file_name: example.com listen: 80 server_name: example.com location1: name: / proxy_pass: "http://127.0.0.1:8080/" ```