#import "RCTBridge.h"
#import <React/RCTUIManager.h>
#import <React/RCTViewManager.h>

@interface CSQUnmaskedViewManager : RCTViewManager
@end

// We use this interface to ensure the "CSQUnmaskedView" class name is
// pass in the view hierarchy in old architecture
@interface CSQUnmaskedView : UIView
@end

@implementation CSQUnmaskedViewManager

RCT_EXPORT_MODULE(CSQUnmaskedView)

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

@end
