w-aura/src/payment/PaymentContext.ts
Aidar Shaikhutdin @makeweb.space 70a00fd89a feat: Chargebee integration init
2023-06-07 21:50:09 +03:00

5 lines
193 B
TypeScript

import { createContext } from 'react'
import { ChargebeeInstance } from '@chargebee/chargebee-js-types'
export const PaymentContext = createContext<ChargebeeInstance>({} as ChargebeeInstance)