import * as React from 'react'; import * as classNames from 'classnames'; import * as styles from './TermsAndSubmit.scss'; import * as Loader from 'wix-style-react/dist/src/Loader'; import Translate from './../../Translate/Translate'; import PayPalIcon from './../icons/PayPalIcon/PayPalIcon'; interface ITermsAndSubmitProps { termsAndConditionsLink?: string; handleTermsStatusChange?: (e: any) => void; } export default (props: ITermsAndSubmitProps) => { return (
); };