GT2/GT2-Android/node_modules/react-native-maps/lib/ios/AirGoogleMaps/DummyView.m

20 lines
291 B
Mathematica
Raw Normal View History

//
// DummyView.m
// AirMapsExplorer
//
// Created by Gil Birman on 10/4/16.
//
#import <Foundation/Foundation.h>
#import "DummyView.h"
@implementation DummyView
- (instancetype)initWithView:(UIView*)view
{
if ((self = [super init])) {
self.view = view;
}
return self;
}
@end