react-native-scanner/Pages/Nfc/index.js

16 lines
296 B
JavaScript

import {Text} from 'react-native';
export default function Nfc() {
return (
<View
style={{
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: 'white',
}}>
<Text style={{color: 'black'}}>Nfc</Text>
</View>
);
}