mirror of
https://github.com/status-im/nfc-react-native.git
synced 2026-08-27 09:51:10 +00:00
8 lines
242 B
JavaScript
8 lines
242 B
JavaScript
import React from 'react-native';
|
|
|
|
const NfcReactNative = React.NativeModules.NfcReactNative;
|
|
|
|
export const readTag = NfcReactNative.readTag;
|
|
export const writeTag = NfcReactNative.writeTag;
|
|
export const getCardId = NfcReactNative.getCardId;
|