// Copyright © 2022 Olo Inc. All rights reserved.
// This software is made available under the Olo Pay SDK License (See LICENSE.md file)
//
//  DigitalWalletButtonManager.swift
//  OlopaysdkReactNative
//
//  Created by Justin Anderson on 4/18/25.
//

import Foundation
import React

@objc(DigitalWalletButtonManager)
class DigitalWalletButtonManager : RCTViewManager {
    @objc override func view() -> UIView! {
        return DigitalWalletButton()
    }
    
    @objc static override func requiresMainQueueSetup() -> Bool {
        return false
    }
}
