1/**
2 * Copyright (c) Facebook, Inc. and its affiliates.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 */
7
8#import "RNCMaskedViewManager.h"
9
10#import "RNCMaskedView.h"
11
12@implementation RNCMaskedViewManager
13
14RCT_EXPORT_MODULE()
15
16- (UIView *)view
17{
18  return [RNCMaskedView new];
19}
20
21@end
22