mirror of
https://github.com/status-im/react-native.git
synced 2025-01-20 22:39:20 +00:00
18 lines
303 B
Objective-C
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
|