react-native/ReactKit/Views/RCTTabBarManager.m
2015-03-05 17:16:19 -08:00

18 lines
303 B
Objective-C

// Copyright 2004-present Facebook. All Rights Reserved.
#import "RCTTabBarManager.h"
#import "RCTBridge.h"
#import "RCTTabBar.h"
@implementation RCTTabBarManager
@synthesize bridge = _bridge;
- (UIView *)view
{
return [[RCTTabBar alloc] initWithEventDispatcher:_bridge.eventDispatcher];
}
@end