package com.checkoutreactnativecomponents.components.googlepay import com.checkoutreactnativecomponents.components.managers.BasePaperManager import com.checkoutreactnativecomponents.utils.Constants import com.facebook.react.uimanager.ThemedReactContext public class GooglePayManagerPaper : BasePaperManager() { override fun getName(): String = Constants.GOOGLE_PAY_MANAGER_PAPER override fun createViewInstance(context: ThemedReactContext): GooglePay = GooglePay(context) override fun setConfigOnView(view: GooglePay?, config: HashMap) { view?.setConfig(config) } }