/** * External dependencies */ import { Visa, MasterCard, Amex, ApplePay, GooglePay, CB, Discover, Ideal, Klarna, Affirm, AfterPay, ClearPay, Woo, } from '@woocommerce/onboarding'; /** * Internal dependencies */ import strings from './strings'; import { getAdminSetting } from '~/utils/admin-settings'; const PaymentMethods: React.FC = () => { const wccomSettings = getAdminSetting( 'wccomHelper', false ); return (
{ wccomSettings && wccomSettings.storeCountry === 'GB' ? ( ) : ( ) } { strings.andMore }
); }; export default PaymentMethods;