mirror of
https://github.com/status-im/react-native-blur.git
synced 2025-01-12 17:44:13 +00:00
16 lines
229 B
Objective-C
16 lines
229 B
Objective-C
#import "VibrancyViewManager.h"
|
|
#import "VibrancyView.h"
|
|
|
|
@implementation VibrancyViewManager
|
|
|
|
RCT_EXPORT_MODULE();
|
|
|
|
- (UIView *)view
|
|
{
|
|
return [[VibrancyView alloc] init];
|
|
}
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(blurType, NSString);
|
|
|
|
@end
|