1// Copyright 2015-present 650 Industries. All rights reserved.
2
3#import "EXDisabledDevMenu.h"
4
5@implementation EXDisabledDevMenu
6
7+ (NSString *)moduleName { return @"RCTDevMenu"; }
8
9RCT_NOT_IMPLEMENTED(- (void)show)
10RCT_NOT_IMPLEMENTED(- (void)reload)
11
12// Stub out methods that are called but don't need to do anything
13- (void)addItem:(NSString *)title handler:(dispatch_block_t)handler {}
14- (void)addItem:(RCTDevMenuItem *)item {}
15
16@end
17