Guest User

Untitled

a guest
Nov 22nd, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. import React, { Component } from 'react';
  2. import { View, Text } from 'react-native';
  3. import MyAwesomeButton from './common/MyAwesomeButton';
  4.  
  5. export default class ClickSome extends Component {
  6. render() {
  7. return (
  8. <View>
  9. <MyAwesomeButton
  10. buttonText="Click me!"
  11. backgroundColor="#ccc"
  12. fontColor="#000"
  13. onPress={() => console.log('HEY THERE!')}
  14. />
  15. </View>
  16. );
  17. }
  18. }
Add Comment
Please, Sign In to add comment