UNPKG

react-native-awesome-components

Version:
29 lines (24 loc) 634 B
import React from 'react'; import { View } from 'react-native'; import { Button } from './Button'; import PropTypes from 'prop-types'; class FormButton extends React.Component { render() { return ( <View style={[{ justifyContent: 'center', alignItems: 'center' }, this.props.style]}> <Button onPress={this.props.onFormSubmit} > {this.props.value} </Button> </View> ) }; }; FormButton.propTypes = { style: PropTypes.func }; FormButton.defaultProps = { style: {} }; export { FormButton }