import { Card } from '@automattic/components'; import PropTypes from 'prop-types'; import CreditCardFormFieldsLoadingPlaceholder from 'calypso/components/credit-card-form-fields/loading-placeholder'; import FormButton from 'calypso/components/forms/form-button'; import Layout from 'calypso/components/layout'; import Column from 'calypso/components/layout/column'; import LoadingPlaceholder from 'calypso/me/purchases/components/loading-placeholder'; import './style.scss'; export default function PaymentMethodLoader( { title } ) { return (
); } PaymentMethodLoader.propTypes = { title: PropTypes.string.isRequired, };