//
//  UnitAddToWalletButtonNativeView.h
//  UnitReactNativeComponents
//
//  Created by  Nogah Melamed on 10/03/2025.
//  Copyright © 2025 Facebook. All rights reserved.
//

#ifdef RCT_NEW_ARCH_ENABLED

#import <React/RCTViewComponentView.h>
#import <UIKit/UIKit.h>
#import <React/RCTEventEmitter.h>
#import "RCTBridge.h"
#import "RCTEventDispatcher.h"
#import "UIView+React.h"

NS_ASSUME_NONNULL_BEGIN

@interface UnitAddToWalletButtonNativeViewComponentView : RCTViewComponentView
@property (nonatomic, copy) RCTDirectEventBlock onAddToWalletClicked;
// You would declare native methods you'd want to access from the view here

@end

NS_ASSUME_NONNULL_END

#endif
