import React from 'react'; import PropTypes from 'prop-types'; import { Col, FormGroup, Label, Row } from 'reactstrap'; import { getData } from 'country-list'; import { CardElement } from '@stripe/react-stripe-js'; import { Input } from '../../../common/FormControls'; import { Trans, translate } from 'react-i18next'; const countries = getData().map((v) => ({ label: v.name, value: v.code })); const cardElementOptions = { hidePostalCode: true, style: { base: { fontSize: '16px', color: '#424770' }, invalid: { color: '#d92550' } } }; function BillingDetailsForm(props) { const { form, errors, handleChange, handleValidation, t } = props; return (

By submitting, you agree to our Privacy Policy Terms & Conditions Acceptable Use Policy .

); } BillingDetailsForm.propTypes = { t: PropTypes.func, form: PropTypes.object, errors: PropTypes.object, handleChange: PropTypes.func, handleValidation: PropTypes.func }; export default React.memo( translate(['tabsContent'], { wait: true })(BillingDetailsForm) );