import React from 'react';
import { View, Text, Button, TouchableOpacity } from 'react-native';
export default class Test extends React.Component {
render() {
return (
<View>
<Text style={{fontSize:20}}>Lets create a npm package ... </Text>
</View>
);
}
}