#ifndef RCT_REMOVE_LEGACY_ARCH
#import "NVTabBarPagerView.h"
#import <React/RCTViewManager.h>

@interface NVTabBarPagerManager : RCTViewManager
@end

@implementation NVTabBarPagerManager

RCT_EXPORT_MODULE()

- (UIView *)view
{
    return [[NVTabBarPagerView alloc] init];
}

RCT_EXPORT_VIEW_PROPERTY(tabCount, NSInteger)
RCT_EXPORT_VIEW_PROPERTY(selectedTab, NSInteger)
RCT_EXPORT_VIEW_PROPERTY(preventFouc, BOOL)
RCT_EXPORT_VIEW_PROPERTY(scrollsToTop, BOOL)
RCT_EXPORT_VIEW_PROPERTY(mostRecentEventCount, NSInteger)
RCT_EXPORT_VIEW_PROPERTY(onTabSelected, RCTDirectEventBlock)

@end

#endif

