16 lines
312 B
C
16 lines
312 B
C
|
//
|
||
|
// Created by Leland Richardson on 12/27/15.
|
||
|
// Copyright (c) 2015 Facebook. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
#import <React/RCTView.h>
|
||
|
|
||
|
|
||
|
@interface AIRMapCallout : RCTView
|
||
|
|
||
|
@property (nonatomic, assign) BOOL tooltip;
|
||
|
@property (nonatomic, copy) RCTBubblingEventBlock onPress;
|
||
|
|
||
|
@end
|