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

@interface CSUnmaskedViewManager : RCTViewManager
@end

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

@implementation CSUnmaskedViewManager

RCT_EXPORT_MODULE(CSUnmaskedView)

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

@end
