react-code-dataset
/
wp-calypso
/client
/a8c-for-agencies
/sections
/purchases
/payment-methods
/context.ts
| import { createContext } from 'react'; | |
| import type { PaymentMethodOverviewContext as PaymentMethodOverviewContextInterface } from './types'; | |
| export const PaymentMethodOverviewContext = createContext< PaymentMethodOverviewContextInterface >( | |
| { | |
| paging: undefined, | |
| setPaging: () => { | |
| return undefined; | |
| }, | |
| } | |
| ); | |