mirror of
https://github.com/status-im/react-native-blur.git
synced 2025-02-21 04:28:05 +00:00
16 lines
216 B
Mathematica
16 lines
216 B
Mathematica
|
#import "BlurViewManager.h"
|
||
|
#import "BlurView.h"
|
||
|
|
||
|
@implementation BlurViewManager
|
||
|
|
||
|
RCT_EXPORT_MODULE();
|
||
|
|
||
|
- (RCTView *)view
|
||
|
{
|
||
|
return [[BlurView alloc] init];
|
||
|
}
|
||
|
|
||
|
RCT_EXPORT_VIEW_PROPERTY(blurType, NSString);
|
||
|
|
||
|
@end
|