16 lines
229 B
Mathematica
16 lines
229 B
Mathematica
|
#import "VibrancyViewManager.h"
|
||
|
#import "VibrancyView.h"
|
||
|
|
||
|
@implementation VibrancyViewManager
|
||
|
|
||
|
RCT_EXPORT_MODULE();
|
||
|
|
||
|
- (UIView *)view
|
||
|
{
|
||
|
return [[VibrancyView alloc] init];
|
||
|
}
|
||
|
|
||
|
RCT_EXPORT_VIEW_PROPERTY(blurType, NSString);
|
||
|
|
||
|
@end
|