Testing component-ization for react native.
npm install tc-packaging-test##Blue Button Component
##Installation
```
npm i tc-packaging-test --save
##Usage
First, require it from your app's JavaScript files with:
```
import BlueButton from 'tc-packaging-test';
BlueButton component creates a blue button with few props. (See below)
##Example
~~~js
import React, { Component } from 'react';
import {
View
} from 'react-native';
import BlueButton from 'tc-packaging-test';
export default class LoginScreen extends Component {
render() {
return (
clickEvent={this.handlePressEvent}/>
);
}
}
~~~
##Configuration
Property | Type | Default Description
------------ | ------------- | -------------
ButtonText | String | Specify text to display on button
clickEvent | function | Fires when BlueButton is tapped.