// @ts-nocheck import React from 'react'; import intl from 'react-intl-universal'; import { FormGroup, InputGroup, ControlGroup } from '@blueprintjs/core'; import { FastField, ErrorMessage } from 'formik'; import { FormattedMessage as T } from '@/components'; import { inputIntent } from '@/utils'; export default function CustomerFormAfterPrimarySection({}) { return (
{/*------------ Customer email -----------*/} {({ field, meta: { error, touched } }) => ( } className={'form-group--email'} label={} inline={true} > )} {/*------------ Phone number -----------*/} } inline={true} > {({ field, meta: { error, touched } }) => ( )} {({ field, meta: { error, touched } }) => ( )} {/*------------ Customer website -----------*/} {({ field, meta: { error, touched } }) => ( } className={'form-group--website'} label={} inline={true} > )}
); }